-
Notifications
You must be signed in to change notification settings - Fork 303
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
15 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,6 @@ jobs: | |
build: | ||
needs: setup | ||
runs-on: master-arm | ||
timeout-minutes: 40 | ||
steps: | ||
- {uses: actions/checkout@v4, with: { ref: "${{ github.event.pull_request.head.sha }}"}} | ||
- uses: ./.github/ci-setup-action | ||
|
@@ -40,13 +39,14 @@ jobs: | |
# must be globally unique for build x runner | ||
concurrency_key: build-master-arm | ||
# prepare images locally, tagged by commit hash | ||
- run: earthly ./yarn-project+export-end-to-end | ||
- name: "Build E2E Image" | ||
timeout-minutes: 40 | ||
run: earthly ./yarn-project+export-end-to-end | ||
|
||
# all the end-to-end integration tests for aztec | ||
e2e: | ||
needs: build | ||
runs-on: master-arm | ||
timeout-minutes: 15 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
|
@@ -60,11 +60,7 @@ jobs: | |
dockerhub_password: "${{ secrets.DOCKERHUB_PASSWORD }}" | ||
concurrency_token: "${{ secrets.AZTEC_GITHUB_TOKEN }}" | ||
concurrency_key: e2e-master-arm | ||
# Ensure that a test only ever is running one e2e at a time | ||
- name: Set up mutex | ||
uses: ben-z/[email protected] | ||
with: | ||
branch: gh-action-mutex-e2e-arm-master-${{ matrix.test }} | ||
- name: Test | ||
working-directory: ./yarn-project/end-to-end/ | ||
timeout-minutes: 15 | ||
run: earthly -P --no-output +${{ matrix.test }} --e2e_mode=cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters