From 8159a95e21d0b061d8a6327a2187e1d98e19377a Mon Sep 17 00:00:00 2001 From: Josh Crites Date: Wed, 21 Jan 2026 12:55:46 -0500 Subject: [PATCH 1/2] update default branch to next --- .github/workflows/note-send-proof-tests.yml | 4 ++-- .github/workflows/prediction-market-tests.yml | 4 ++-- .github/workflows/recursive-verification-tests.yml | 4 ++-- .github/workflows/test-wallet-webapp-tests.yml | 4 ++-- CLAUDE.md | 2 +- README.md | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/note-send-proof-tests.yml b/.github/workflows/note-send-proof-tests.yml index bb804f3..b403c4a 100644 --- a/.github/workflows/note-send-proof-tests.yml +++ b/.github/workflows/note-send-proof-tests.yml @@ -3,10 +3,10 @@ name: Note Send Proof Tests on: push: branches: - - main + - next pull_request: branches: - - main + - next paths: - "note-send-proof/**" - ".github/workflows/note-send-proof-tests.yml" diff --git a/.github/workflows/prediction-market-tests.yml b/.github/workflows/prediction-market-tests.yml index 01a7637..7a3dbe7 100644 --- a/.github/workflows/prediction-market-tests.yml +++ b/.github/workflows/prediction-market-tests.yml @@ -3,10 +3,10 @@ name: Prediction Market Tests on: push: branches: - - main + - next pull_request: branches: - - main + - next paths: - "prediction-market/**" - ".github/workflows/prediction-market-tests.yml" diff --git a/.github/workflows/recursive-verification-tests.yml b/.github/workflows/recursive-verification-tests.yml index 1affa52..b21ee93 100644 --- a/.github/workflows/recursive-verification-tests.yml +++ b/.github/workflows/recursive-verification-tests.yml @@ -3,10 +3,10 @@ name: Recursive Verification Tests on: push: branches: - - main + - next pull_request: branches: - - main + - next paths: - "recursive_verification/**" - ".github/workflows/recursive-verification-tests.yml" diff --git a/.github/workflows/test-wallet-webapp-tests.yml b/.github/workflows/test-wallet-webapp-tests.yml index 7f827dd..b2ab04b 100644 --- a/.github/workflows/test-wallet-webapp-tests.yml +++ b/.github/workflows/test-wallet-webapp-tests.yml @@ -3,10 +3,10 @@ name: Test Wallet Webapp Tests on: push: branches: - - main + - next pull_request: branches: - - main + - next paths: - "test-wallet-webapp/**" - ".github/workflows/test-wallet-webapp-tests.yml" diff --git a/CLAUDE.md b/CLAUDE.md index 4b63193..24fe8a1 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -289,7 +289,7 @@ The repository includes GitHub Actions workflows for automated testing: Runs on: -- Push to main branch +- Push to next branch - Pull requests modifying `recursive_verification/**` - Manual workflow dispatch diff --git a/README.md b/README.md index c10bcdd..94cc749 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ aztec-wallet profile --args --contract-address -f test ### Continuous Integration -The repository includes GitHub Actions workflows that automatically test examples on pull requests and pushes to the main branch. +The repository includes GitHub Actions workflows that automatically test examples on pull requests and pushes to the next branch. ### Local Testing From 143e78c3b33fc2a089e699d136da01879a0ffe1f Mon Sep 17 00:00:00 2001 From: Josh Crites Date: Wed, 21 Jan 2026 13:00:06 -0500 Subject: [PATCH 2/2] Fix CI: pass VERSION to Aztec install script The install script was trying to pull aztecprotocol/aztec:latest which doesn't exist. Now passes VERSION env var so it pulls the correct version. Co-Authored-By: Claude Opus 4.5 --- .github/workflows/note-send-proof-tests.yml | 2 +- .github/workflows/prediction-market-tests.yml | 2 +- .github/workflows/recursive-verification-tests.yml | 2 +- .github/workflows/test-wallet-webapp-tests.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/note-send-proof-tests.yml b/.github/workflows/note-send-proof-tests.yml index b403c4a..be9ee93 100644 --- a/.github/workflows/note-send-proof-tests.yml +++ b/.github/workflows/note-send-proof-tests.yml @@ -38,7 +38,7 @@ jobs: - name: Install Aztec CLI run: | curl -s https://install.aztec.network > tmp.sh - NON_INTERACTIVE=1 bash tmp.sh + VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh rm tmp.sh - name: Update path diff --git a/.github/workflows/prediction-market-tests.yml b/.github/workflows/prediction-market-tests.yml index 7a3dbe7..89795a1 100644 --- a/.github/workflows/prediction-market-tests.yml +++ b/.github/workflows/prediction-market-tests.yml @@ -40,7 +40,7 @@ jobs: - name: Install Aztec CLI run: | curl -s https://install.aztec.network > tmp.sh - NON_INTERACTIVE=1 bash tmp.sh + VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh rm tmp.sh - name: Update path diff --git a/.github/workflows/recursive-verification-tests.yml b/.github/workflows/recursive-verification-tests.yml index b21ee93..ca3c281 100644 --- a/.github/workflows/recursive-verification-tests.yml +++ b/.github/workflows/recursive-verification-tests.yml @@ -40,7 +40,7 @@ jobs: - name: Install Aztec CLI run: | curl -s https://install.aztec.network > tmp.sh - NON_INTERACTIVE=1 bash tmp.sh + VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh rm tmp.sh - name: Update path diff --git a/.github/workflows/test-wallet-webapp-tests.yml b/.github/workflows/test-wallet-webapp-tests.yml index b2ab04b..8500bd2 100644 --- a/.github/workflows/test-wallet-webapp-tests.yml +++ b/.github/workflows/test-wallet-webapp-tests.yml @@ -37,7 +37,7 @@ jobs: - name: Install Aztec CLI run: | curl -s https://install.aztec.network > tmp.sh - NON_INTERACTIVE=1 bash tmp.sh + VERSION=${{ env.AZTEC_VERSION }} NON_INTERACTIVE=1 bash tmp.sh rm tmp.sh - name: Update path