Skip to content

Commit

Permalink
chore: boxes tests cause resource issues (#10676)
Browse files Browse the repository at this point in the history
this forces them to run in serial
  • Loading branch information
ludamad authored Dec 12, 2024
1 parent d6be2c8 commit ccf1c78
Showing 1 changed file with 16 additions and 5 deletions.
21 changes: 16 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -868,11 +868,26 @@ jobs:
alert-comment-cc-users: "@ludamad @codygunton"
max-items-in-chart: 50

boxes-test:
boxes:
needs: [e2e-test-gate, configure]
runs-on: ${{ needs.configure.outputs.username }}-x86
steps:
- uses: actions/checkout@v4
with: { ref: "${{ github.event.pull_request.head.sha }}" }
- uses: ./.github/ci-setup-action
with:
concurrency_key: boxes-${{ matrix.box }}-${{ matrix.browser }}
- name: Build
working-directory: ./boxes
timeout-minutes: 40
run: earthly-ci +export-boxes

boxes-test:
needs: [boxes, configure]
runs-on: ${{ needs.configure.outputs.username }}-x86
strategy:
fail-fast: false
max-parallel: 1
matrix:
box: [vanilla, react]
# intermittent issues with firefox https://github.com/AztecProtocol/aztec-packages/issues/6676
Expand All @@ -884,10 +899,6 @@ jobs:
- uses: ./.github/ci-setup-action
with:
concurrency_key: boxes-${{ matrix.box }}-${{ matrix.browser }}
- name: Build
working-directory: ./boxes
timeout-minutes: 40
run: earthly-ci +export-boxes
- name: Box test
working-directory: ./boxes
timeout-minutes: 40
Expand Down

0 comments on commit ccf1c78

Please sign in to comment.