Skip to content

Commit

Permalink
fixup! Improve test parallelism
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Jan 20, 2025
1 parent 3cf9d0c commit 9acff75
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ jobs:
outputs:
json: ${{ steps.filter.outputs.json }}
steps:
- run: |
- name: Filter Matrix
id: filter
run: |
# Remove any entries with keys containing `null` values.
output_yaml="$(yq 'map(select(to_entries | map(.value != null) | all))' <<<"${matrix:?}")"
Expand Down Expand Up @@ -65,11 +67,11 @@ jobs:
- title: ${{ github.event_name == 'pull_request' && 'Merge Commit From Scratch' || '' }}
package: temporary/whalesay-from-scratch
commit-sha: ${{ github.sha }}
from-scratch: false
from-scratch: true
- title: Head Commit From Scratch
package: temporary/whalesay-from-scratch
commit-sha: ${{ github.event.pull_request.head.sha || github.sha }}
from-scratch: false
from-scratch: true
test:
name: Test ${{ matrix.test.title }}
Expand Down

0 comments on commit 9acff75

Please sign in to comment.