Skip to content

Commit 1f91bc4

Browse files
authored
ci: add the linux container test job to the list of jobs checked in integration-test-status (#2323)
1 parent 743eb9a commit 1f91bc4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/all_solutions.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -136,8 +136,9 @@ jobs:
136136
if-no-files-found: error
137137

138138
run-linux-container-tests:
139-
needs: build-fullagent-msi
140139
name: Run Linux Container Tests
140+
needs:
141+
- build-fullagent-msi
141142
uses: ./.github/workflows/run_linux_container_tests.yml
142143
secrets: inherit
143144

@@ -694,9 +695,14 @@ jobs:
694695
integration-test-status:
695696
name: Check Test Matrix Status
696697
runs-on: ubuntu-latest
697-
needs: [run-integration-tests, run-unbounded-tests]
698+
needs: [run-linux-container-tests, run-integration-tests, run-unbounded-tests]
698699
if: always()
699700
steps:
701+
- name: Harden Runner
702+
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
703+
with:
704+
disable-sudo: true
705+
egress-policy: audit
700706
- name: Successful test run
701707
if: ${{ !(contains(needs.*.result, 'failure')) }}
702708
run: exit 0

0 commit comments

Comments
 (0)