From 46e30d1ff45546cc94b6259d5559fe4a3c0c5cc7 Mon Sep 17 00:00:00 2001 From: Trystan Schneider Date: Thu, 14 Nov 2024 03:17:37 +0100 Subject: [PATCH] Intervert matrix to test --- .github/workflows/bench-aws.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bench-aws.yml b/.github/workflows/bench-aws.yml index b4596158c..b4cd7e2b0 100644 --- a/.github/workflows/bench-aws.yml +++ b/.github/workflows/bench-aws.yml @@ -21,9 +21,9 @@ jobs: run: | set -ex if [ "$TRIGGER" = 'push' ]; then - echo '{"include":[{"type": "localhost", "ntasks":100, "polling-limit": 300}]}' > matrix.json + echo '{"include":[{"type": "localhost", "ntasks":100, "polling-limit": 300}, {"type": "aws", "ntasks":1000, "polling-limit": 600}]}' > matrix.json elif [ "$TRIGGER" = 'release' ]; then - echo '{"include":[{"type": "localhost", "ntasks":100, "polling-limit": 300}, {"type": "aws", "ntasks":1000, "polling-limit": 600}]}' > matrix.json + echo '{"include":[{"type": "localhost", "ntasks":100, "polling-limit": 300}]}' > matrix.json fi echo "matrix=$(cat matrix.json)" >> "$GITHUB_OUTPUT" test-matrix: