File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change 1010
1111permissions :
1212 id-token : write
13- # required by dependent workflows
13+ # required by testinfra-ami-build dependent workflows
1414 contents : write
1515 packages : write
1616
8383 # with:
8484 # attr: ${{ matrix.attr }}
8585
86+ run-testinfra :
87+ needs : [nix-build-aarch64-linux, nix-build-aarch64-darwin] # , nix-build-x86_64-linux]
88+ if : |
89+ !cancelled() &&
90+ (needs.nix-build-aarch64-linux.result == 'skipped' || needs.nix-build-aarch64-linux.result == 'success') &&
91+ (needs.nix-build-aarch64-darwin.result == 'skipped' || needs.nix-build-aarch64-darwin.result == 'success')
92+ uses : ./.github/workflows/testinfra-ami-build.yml
93+ secrets :
94+ DEV_AWS_ROLE : ${{ secrets.DEV_AWS_ROLE }}
95+
8696 run-tests :
8797 needs : [nix-build-aarch64-linux, nix-build-aarch64-darwin] # , nix-build-x86_64-linux]
8898 if : |
You can’t perform that action at this time.
0 commit comments