Skip to content

Commit

Permalink
ci: add the linux container test job to the list of jobs checked in `…
Browse files Browse the repository at this point in the history
…integration-test-status` (#2323)
  • Loading branch information
tippmar-nr authored Mar 8, 2024
1 parent 743eb9a commit 1f91bc4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/all_solutions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ jobs:
if-no-files-found: error

run-linux-container-tests:
needs: build-fullagent-msi
name: Run Linux Container Tests
needs:
- build-fullagent-msi
uses: ./.github/workflows/run_linux_container_tests.yml
secrets: inherit

Expand Down Expand Up @@ -694,9 +695,14 @@ jobs:
integration-test-status:
name: Check Test Matrix Status
runs-on: ubuntu-latest
needs: [run-integration-tests, run-unbounded-tests]
needs: [run-linux-container-tests, run-integration-tests, run-unbounded-tests]
if: always()
steps:
- name: Harden Runner
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0
with:
disable-sudo: true
egress-policy: audit
- name: Successful test run
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
Expand Down

0 comments on commit 1f91bc4

Please sign in to comment.