Skip to content

Commit

Permalink
ci: Limit parallelism for E2EVersionCompatibilityTrigger (aws#4961)
Browse files Browse the repository at this point in the history
  • Loading branch information
engedaam authored Oct 30, 2023
1 parent 5d648a1 commit d8af77a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/e2e-matrix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ on:
workflow_trigger:
type: string
required: true
parallelism:
type: number
secrets:
SLACK_WEBHOOK_URL:
required: true
Expand Down Expand Up @@ -51,6 +53,7 @@ jobs:
e2e:
strategy:
fail-fast: false
max-parallel: ${{ inputs.parallelism || 100 }}
matrix:
suite:
- Beta/Integration
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/e2e-version-compatibility-trigger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,6 @@ jobs:
workflow_trigger: "versionCompatibility"
# Default to true unless using a workflow_dispatch
cleanup: ${{ github.event_name != 'workflow_dispatch' && true || inputs.cleanup }}
parallelism: 2
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

0 comments on commit d8af77a

Please sign in to comment.