File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,11 @@ jobs:
1212 NOMAD_TOKEN_EXT : ${{ secrets.NOMAD_TOKEN_EXT }}
1313 NOMAD_TOKEN : ${{ secrets.NOMAD_TOKEN }}
1414
15- test :
16- runs-on : ubuntu-latest
17- needs : [cicd]
18- container :
19- # test using the just built-and-pushed docker image from the [cicd] job above
20- image : ' docker://ghcr.io/${{ github.repository }}:${{ github.ref_name }}'
21- steps :
22- - run : env -i zsh -euax test/test.sh
15+ # test:
16+ # runs-on: ubuntu-latest
17+ # needs: [cicd]
18+ # container:
19+ # # test using the just built-and-pushed docker image from the [cicd] job above
20+ # image: 'docker://ghcr.io/${{ github.repository }}:${{ github.ref_name }}'
21+ # steps:
22+ # - run: test/test.sh
Original file line number Diff line number Diff line change 22
33# Runs various tests.
44
5- # Run like this to avoid any env vars "leaking" in to this script:
6- # env -i zsh -euax ./test/test.sh
5+ # Avoid any env vars "leaking" in to this script
6+ unset $( printenv | cut -f1 -d= | grep -Ev ' ^PATH$' )
7+
78
89function banner() {
910 set +x
You can’t perform that action at this time.
0 commit comments