-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into sync-noir
* master: (207 commits) refactor: disallow prune in devnet + add onlyOwners (#8134) refactor: add partial note support for value note (#8141) git subrepo push --branch=master noir-projects/aztec-nr git_subrepo.sh: Fix parent in .gitrepo file. [skip ci] chore: replace relative paths to noir-protocol-circuits git subrepo push --branch=master barretenberg Update external-ci-approved.yml fix: Fixes for the nightly test run against Sepolia (#8229) fix: Docker containers healthchecks (#8228) chore: Create external-ci-approved.yml (#8235) refactor: rework balances map (#8127) feat: Add CLI command for gathering proving metrics (#8221) chore: Less noisy AVM failures in proving (#8227) chore: open an issue if publishing bb fails (#8223) feat: spartan token transfer (#8163) fix: Attempt to fix nightly test (#8222) feat: initial validator set (#8133) chore: Configure interval mining for anvil (#8211) fix: remove devnet ARM builds for now (#8202) fix: Export brillig names in contract functions (#8212) ...
- Loading branch information
Showing
1,143 changed files
with
49,220 additions
and
20,458 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
title: "Nightly release failed" | ||
assignees: fcarreiro, ludamad | ||
--- | ||
|
||
The most recent nightly release failed. This means that no `bb` artifacts were published (which are required by Noir). | ||
|
||
Check the [{{env.WORKFLOW_NAME}}]({{env.WORKFLOW_URL}}) workflow for details. |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Mirror PRs labeled external-ci-approved. It will sync on every-reapply. | ||
name: Mirror PRs for External CI | ||
|
||
on: | ||
pull_request_target: | ||
types: [labeled] | ||
|
||
jobs: | ||
mirror-pr: | ||
runs-on: ubuntu-latest | ||
|
||
if: contains(github.event.pull_request.labels.*.name, 'external-ci-approved') | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
# TODO remove guesswork | ||
ref: ${{ github.event.pull_request.head.sha || github.event.pull_request_target.head.sha }} | ||
token: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }} | ||
|
||
- name: Set up Git | ||
run: | | ||
git config user.name "${{ github.actor }}" | ||
git config user.email "${{ github.actor }}@users.noreply.github.com" | ||
- name: Create or update the mirrored branch | ||
run: | | ||
HASH=$(git rev-parse HEAD) | ||
git checkout -b mirrored/${{ github.head_ref }} || git checkout mirrored/${{ github.head_ref }} | ||
git reset --hard $HASH | ||
git push origin mirrored/${{ github.head_ref }} --force | ||
- name: Create or update the mirrored pull request | ||
uses: peter-evans/create-pull-request@v5 | ||
with: | ||
token: ${{ secrets.AZTEC_BOT_GITHUB_TOKEN }} | ||
base: master | ||
head: ${{ github.head_ref }} | ||
title: "Mirror PR: ${{ github.event.pull_request.title }}" | ||
body: "This PR has been created because #${{ github.event.pull_request.number }} has been labeled external-ci-approved. It will sync on every-reapply." | ||
draft: false | ||
branch: mirrored/${{ github.head_ref }} | ||
update_existing_pr: true |
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
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
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 |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: Run public testnet test | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "00 08 * * 1-5" | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
env: | ||
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }} | ||
GIT_COMMIT: ${{ github.sha }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
|
||
# Address 0x652575Ff941e7c2850fB89f2B207efF6B06BC7B4 | ||
SEQ_PUBLISHER_PRIVATE_KEY: ${{ secrets.SEPOLIA_SEQ_PRIVATE_KEY }} | ||
|
||
# Address 0xE3b8F9F23b8D4BD7d437218Bff3bcED1ce5E70B3 | ||
PROVER_PUBLISHER_PRIVATE_KEY: ${{ secrets.SEPOLIA_PROVER_PRIVATE_KEY }} | ||
|
||
ETHEREUM_HOST: "https://sepolia.infura.io/v3/${{ secrets.SEPOLIA_API_KEY }}" | ||
L1_CHAIN_ID: "11155111" | ||
|
||
jobs: | ||
setup: | ||
uses: ./.github/workflows/setup-runner.yml | ||
with: | ||
username: ${{ github.event.pull_request.user.login || github.actor }} | ||
runner_type: builder-x86 | ||
secrets: inherit | ||
|
||
build-and-test: | ||
needs: setup | ||
runs-on: ${{ github.event.pull_request.user.login || github.actor }}-x86 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: "${{ env.GIT_COMMIT }}" | ||
|
||
- uses: ./.github/ci-setup-action | ||
with: | ||
concurrency_key: build-test-artifacts-${{ github.actor }} | ||
|
||
- name: "Build E2E Image" | ||
timeout-minutes: 40 | ||
run: | | ||
earthly-ci ./yarn-project+export-e2e-test-images | ||
- name: Run Testnet Test | ||
timeout-minutes: 40 | ||
run: | | ||
set -eux | ||
cd ./yarn-project/end-to-end/ | ||
export FORCE_COLOR=1 | ||
../../scripts/earthly-ci -P --no-output +e2e-public-testnet \ | ||
--SEQ_PUBLISHER_PRIVATE_KEY=${{ secrets.SEPOLIA_SEQ_PRIVATE_KEY }} \ | ||
--PROVER_PUBLISHER_PRIVATE_KEY=${{ secrets.SEPOLIA_PROVER_PRIVATE_KEY }} \ | ||
--ETHEREUM_HOST="https://sepolia.infura.io/v3/${{ secrets.SEPOLIA_API_KEY }}" \ | ||
--L1_CHAIN_ID="11155111" | ||
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 |
---|---|---|
@@ -1 +1 @@ | ||
82eb1581251faa9716d762a673fa1b871b3e7be2 | ||
86c151aa43ba990a0e900995064a88fc2ae6637d |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
".": "0.48.0", | ||
".": "0.51.0", | ||
"yarn-project/cli": "0.35.1", | ||
"yarn-project/aztec": "0.48.0", | ||
"barretenberg": "0.48.0", | ||
"barretenberg/ts": "0.48.0" | ||
"yarn-project/aztec": "0.51.0", | ||
"barretenberg": "0.51.0", | ||
"barretenberg/ts": "0.51.0" | ||
} |
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
Oops, something went wrong.