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 10
10
11
11
permissions :
12
12
id-token : write
13
- # required by dependent workflows
13
+ # required by testinfra-ami-build dependent workflows
14
14
contents : write
15
15
packages : write
16
16
83
83
# with:
84
84
# attr: ${{ matrix.attr }}
85
85
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
+
86
96
run-tests :
87
97
needs : [nix-build-aarch64-linux, nix-build-aarch64-darwin] # , nix-build-x86_64-linux]
88
98
if : |
You can’t perform that action at this time.
0 commit comments