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: