Skip to content

Commit

Permalink
name updates
Browse files Browse the repository at this point in the history
  • Loading branch information
kcq committed Jan 3, 2023
1 parent 9783409 commit 4ab562b
Show file tree
Hide file tree
Showing 65 changed files with 360 additions and 336 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance-testing-bats.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
with:
go-version: ${{ matrix.go }}

- name: Build DockerSlim (quick dev)
- name: Build Slim (quick dev)
run: make build_dev

- name: Run the bats test suite
Expand Down
36 changes: 18 additions & 18 deletions .github/workflows/acceptance-testing-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,39 +11,39 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out docker-slim/docker-slim repo
- name: Check out slimtoolkit/slim repo
uses: actions/checkout@v3

- name: Set up Go development environment
uses: actions/setup-go@v3
with:
go-version: '1.16.0'

- name: Build DockerSlim (multi-arch)
- name: Build Slim (multi-arch)
run: make build

- name: Upload docker-slim binaries (Linux, amd64)
- name: Upload Slim app binaries (Linux, amd64)
uses: actions/upload-artifact@v3
with:
name: dist_linux
path: dist_linux
retention-days: 1

- name: Upload docker-slim binaries (Linux, arm64)
- name: Upload Slim app binaries (Linux, arm64)
uses: actions/upload-artifact@v3
with:
name: dist_linux_arm64
path: dist_linux_arm64
retention-days: 1

- name: Upload docker-slim binaries (Linux, arm)
- name: Upload Slim app binaries (Linux, arm)
uses: actions/upload-artifact@v3
with:
name: dist_linux_arm
path: dist_linux_arm
retention-days: 1

- name: Upload docker-slim binaries (macOS, amd64)
- name: Upload Slim app binaries (macOS, amd64)
uses: actions/upload-artifact@v3
with:
name: dist_mac
Expand All @@ -63,31 +63,31 @@ jobs:
bin_artifacts: dist_linux
runs-on: ${{ matrix.os }}
steps:
- name: Check out docker-slim/docker-slim repo
- name: Check out slimtoolkit/slim repo
uses: actions/checkout@v3

- name: Set up Go development environment
uses: actions/setup-go@v3
with:
go-version: '1.16.0'

- name: Download docker-slim binaries
- name: Download Slim app binaries
uses: actions/download-artifact@v3
with:
name: ${{ matrix.bin_artifacts }}
path: bin

- name: Fix docker-slim binaries permissions
- name: Fix Slim app binaries permissions
run: chmod a+x bin/*

- name: Add docker-slim/bin folder to $PATH
- name: Add Slim bin folder to $PATH
run: echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH

- name: Run sensor e2e tests
timeout-minutes: 60
run: make test-e2e-sensor

# Run full-cycle tests (ab)using the docker-slim/examples repository.
# Run full-cycle tests (ab)using the slimtoolkit/examples repository.
test-full-e2e:
needs: build
strategy:
Expand Down Expand Up @@ -115,28 +115,28 @@ jobs:
bin_artifacts: dist_linux
runs-on: ${{ matrix.os }}
steps:
- name: Check out docker-slim/docker-slim repo
- name: Check out slimtoolkit/slim repo
uses: actions/checkout@v3

- name: Check out docker-slim/examples repo
- name: Check out slimtoolkit/examples repo
uses: actions/checkout@v3
with:
repository: docker-slim/examples
repository: slimtoolkit/examples
path: e2e

- name: Download docker-slim binaries
- name: Download Slim app binaries
uses: actions/download-artifact@v3
with:
name: ${{ matrix.bin_artifacts }}
path: bin

- name: Fix docker-slim binaries permissions
- name: Fix Slim app binaries permissions
run: chmod a+x bin/*

- name: Add docker-slim/bin folder to $PATH
- name: Add Slim app bin folder to $PATH
run: echo "${GITHUB_WORKSPACE}/bin" >> $GITHUB_PATH

- name: Run all e2e tests from docker-slim/examples
- name: Run all e2e tests from slimtoolkit/examples
timeout-minutes: 60
run: |
export DSLIM_LOG_LEVEL=debug
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out docker-slim/docker-slim repo
- name: Check out slimtoolkit/slim repo
uses: actions/checkout@v3

- name: Set up Go development environment
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.DS_Store
/docker-slim
/slim
/docker-slim-sensor
/slim-sensor
/dist_linux*/
/dist_mac/
/dist_mac_m1/
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to DockerSlim
# Contributing to SlimToolkit

If you want to contribute submit a GitHub pull request or open an issue. Thank you!

Expand All @@ -8,7 +8,7 @@ Any contribution is better than no contribution :-) Submit a [pull request](http

## Code

To learn more about the code take a look at the `DockerSlim Code` videos on ['YouTube'](https://www.youtube.com/channel/UCy7RHjJlaBhpCCbChrd8POA?sub_confirmation=1)
To learn more about the code take a look at the `SlimToolkit Code` videos on ['YouTube'](https://www.youtube.com/channel/UCy7RHjJlaBhpCCbChrd8POA?sub_confirmation=1)

## Guidelines

Expand All @@ -30,7 +30,7 @@ The coding standards are based on the [Golang community standards](https://githu

### Dependencies

TBD - information about adding dependencies to DockerSlim
TBD - information about adding dependencies

### Testing

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@

END OF TERMS AND CONDITIONS

Copyright 2015-2018 DockerSlim.
Copyright 2015-2022 SlimToolkit.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
Loading

0 comments on commit 4ab562b

Please sign in to comment.