Skip to content

Commit

Permalink
Increase the number of CI tests that can be run in parallel. (#641)
Browse files Browse the repository at this point in the history
I expect that the workflow will fail after this change is checked in due to resource limitations.  Based on those
failures, we will get the necessary limits raised.
  • Loading branch information
straussb authored Sep 14, 2021
1 parent ea96ccb commit ffe42a2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ jobs:
needs: [get-testing-suites, e2etest-release, e2etest-preparation]
strategy:
fail-fast: false
max-parallel: 10
max-parallel: 50
matrix: ${{ fromJson(needs.get-testing-suites.outputs.ec2-matrix-1) }}

steps:
Expand Down Expand Up @@ -657,7 +657,7 @@ jobs:
needs: [get-testing-suites, e2etest-release, e2etest-preparation]
strategy:
fail-fast: false
max-parallel: 10
max-parallel: 50
matrix: ${{ fromJson(needs.get-testing-suites.outputs.ec2-matrix-2) }}

steps:
Expand Down Expand Up @@ -718,7 +718,7 @@ jobs:
needs: [get-testing-suites, e2etest-release, e2etest-preparation]
strategy:
fail-fast: false
max-parallel: 10
max-parallel: 50
matrix: ${{ fromJson(needs.get-testing-suites.outputs.ec2-matrix-3) }}

steps:
Expand Down Expand Up @@ -780,7 +780,7 @@ jobs:
needs: [get-testing-suites, e2etest-release, e2etest-preparation]
strategy:
fail-fast: false
max-parallel: 10
max-parallel: 50
matrix: ${{ fromJson(needs.get-testing-suites.outputs.ecs-matrix) }}

steps:
Expand Down Expand Up @@ -837,7 +837,7 @@ jobs:
needs: [get-testing-suites, e2etest-release, e2etest-preparation]
strategy:
fail-fast: false
max-parallel: 10
max-parallel: 50
matrix: ${{ fromJson(needs.get-testing-suites.outputs.eks-matrix) }}

steps:
Expand Down

0 comments on commit ffe42a2

Please sign in to comment.