From 2a18b9dc2939ae88ee9936b6acb6a5821a03d56a Mon Sep 17 00:00:00 2001 From: Philipp Stehle Date: Mon, 12 Dec 2022 08:55:38 +0100 Subject: [PATCH] fix ci: missing needs in github action yaml (#4146) --- .github/workflows/integration-tests-pr.yml | 1 + .github/workflows/integration-tests.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/integration-tests-pr.yml b/.github/workflows/integration-tests-pr.yml index 220bbe6b5..d9b241296 100644 --- a/.github/workflows/integration-tests-pr.yml +++ b/.github/workflows/integration-tests-pr.yml @@ -120,6 +120,7 @@ jobs: needs: - build_piper - build_integration_tests + - start strategy: fail-fast: true matrix: ${{ fromJson(needs.build_integration_tests.outputs.matrix) }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index bc8335087..88c65eaba 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -92,6 +92,7 @@ jobs: needs: - build_piper - build_integration_tests + - start strategy: fail-fast: true matrix: ${{ fromJson(needs.build_integration_tests.outputs.matrix) }}