Skip to content

Commit

Permalink
Fixes typos in ci scripts until we can remove them (#157)
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Cole <adrian@tetrate.io>
  • Loading branch information
codefromthecrypt authored Apr 1, 2021
1 parent 9898c69 commit 414491e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: "Run e2e tests using the `getenvoy` binary built by the upstream job"
run: | # chmod to restore permissions lost in actions/download-artifact@v2
chmod a+x build/bin/linux/amd64/getenvoy
./ci/e2e/macos/run_tests.sh
./ci/e2e/linux/run_tests.sh
e2e_macos:
name: "Run e2e tests on MacOS"
Expand All @@ -97,7 +97,7 @@ jobs:
path: build/bin

- name: "Install 'Docker for Mac' (an older version that can be installed in CI environment)"
run: ./ci/e2e/macos/install_docker.sh
run: ./ci/e2e/darwin/install_docker.sh
timeout-minutes: 7 # unfortunately, installing `Docker for Mac` in CI environment is fragile; be ready to restart the job occasionally

- name: "Build language-specific Docker build images"
Expand All @@ -110,5 +110,5 @@ jobs:

- name: "Run e2e tests using the `getenvoy` binary built by the upstream job"
run: | # chmod to restore permissions lost in actions/download-artifact@v2
chmod a+x build/bin/linux/amd64/getenvoy
./ci/e2e/macos/run_tests.sh
chmod a+x build/bin/darwin/amd64/getenvoy
./ci/e2e/darwin/run_tests.sh
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ jobs:
tar -C build/bin/darwin/amd64 -xf ${INPUT_FILE} getenvoy
- name: "Install 'Docker for Mac' (an older version that can be installed in CI environment)"
run: ./ci/e2e/macos/install_docker.sh
run: ./ci/e2e/darwin/install_docker.sh
timeout-minutes: 7 # unfortunately, installing `Docker for Mac` in CI environment is fragile; be ready to restart the job ocasionally

- name: "Pull extension builder images"
Expand All @@ -169,4 +169,4 @@ jobs:
timeout-minutes: 10 # fail fast if MacOS runner becomes to slow

- name: "Run e2e tests using released `getenvoy` binary and published extension builder images"
run: ./ci/e2e/macos/run_tests.sh
run: ./ci/e2e/darwin/run_tests.sh
File renamed without changes.
File renamed without changes.

0 comments on commit 414491e

Please sign in to comment.