From ff48bd21c670db302804fd3a49a3bbc0d73ed0d9 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Raynaud Date: Thu, 19 Dec 2024 15:14:25 +0100 Subject: [PATCH] feat: configure Aggregator Stress Test' workflow in nightly dispatcher --- .github/workflows/nightly-dispatcher.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/nightly-dispatcher.yml b/.github/workflows/nightly-dispatcher.yml index 6376e48c83e..cf99fe573d8 100644 --- a/.github/workflows/nightly-dispatcher.yml +++ b/.github/workflows/nightly-dispatcher.yml @@ -7,15 +7,18 @@ on: - cron: "0 2 * * *" jobs: + backward-compatibility: + uses: ./.github/workflows/backward-compatibility.yml + docker-builds: uses: ./.github/workflows/docker-builds.yml - backward-compatibility: - uses: ./.github/workflows/backward-compatibility.yml + aggregator-stress-test: + uses: ./.github/workflows/aggregator-stress-test.yml notify-on-failure: runs-on: ubuntu-22.04 - needs: [docker-builds] + needs: [docker-builds, aggregator-stress-test] if: failure() steps: - name: Checkout repository