Skip to content

Commit 6e5e922

Browse files
critesjoshclaude
andcommitted
Fix CI workflows: Update to Aztec v3.0.0-devnet.20251212
- note-send-proof: Update from v2.0.3 to v3.0.0-devnet.20251212, use local-network instead of sandbox, use `aztec compile` instead of `aztec-nargo compile` - test-wallet-webapp: Update from v3.0.0-devnet.5 to v3.0.0-devnet.20251212, use local-network instead of sandbox Co-Authored-By: Claude Opus 4.5 <[email protected]>
1 parent ef5e6ee commit 6e5e922

File tree

2 files changed

+19
-22
lines changed

2 files changed

+19
-22
lines changed

.github/workflows/note-send-proof-tests.yml

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
name: Note Send Proof Tests
1818
runs-on: ubuntu-latest
1919
env:
20-
AZTEC_ENV: sandbox
21-
AZTEC_VERSION: 2.0.3
20+
AZTEC_ENV: local-network
21+
AZTEC_VERSION: 3.0.0-devnet.20251212
2222

2323
steps:
2424
- name: Checkout repository
@@ -44,22 +44,23 @@ jobs:
4444
- name: Update path
4545
run: echo "$HOME/.aztec/bin" >> $GITHUB_PATH
4646

47-
- name: Set Aztec version and start sandbox
47+
- name: Set Aztec version and start local network
4848
run: |
4949
aztec-up ${{ env.AZTEC_VERSION }}
50-
aztec start --sandbox &
50+
docker tag aztecprotocol/aztec:${{ env.AZTEC_VERSION }} aztecprotocol/aztec:latest
51+
aztec start --local-network &
5152
52-
- name: Wait for sandbox to be ready
53+
- name: Wait for local network to be ready
5354
run: |
54-
echo "Waiting for sandbox to start..."
55+
echo "Waiting for local network to start..."
5556
MAX_RETRIES=60
5657
for i in $(seq 1 $MAX_RETRIES); do
5758
if curl -s http://localhost:8080/status >/dev/null 2>&1; then
58-
echo "✅ Sandbox is ready!"
59+
echo "✅ Local network is ready!"
5960
break
6061
fi
6162
if [ $i -eq $MAX_RETRIES ]; then
62-
echo "❌ Sandbox failed to start after $MAX_RETRIES attempts"
63+
echo "❌ Local network failed to start after $MAX_RETRIES attempts"
6364
exit 1
6465
fi
6566
echo "Waiting... ($i/$MAX_RETRIES)"
@@ -70,11 +71,7 @@ jobs:
7071
working-directory: note-send-proof
7172
run: yarn install
7273

73-
- name: Compile Aztec contract
74-
working-directory: note-send-proof/sample-contract
75-
run: aztec-nargo compile
76-
77-
- name: Post-process contract and generate artifacts
74+
- name: Compile contract and generate artifacts
7875
working-directory: note-send-proof
7976
run: yarn ccc
8077

@@ -105,7 +102,7 @@ jobs:
105102
- name: Cleanup
106103
if: always()
107104
run: |
108-
echo "Stopping Aztec sandbox..."
105+
echo "Stopping Aztec local network..."
109106
pkill -f "aztec" || true
110107
docker stop $(docker ps -q) || true
111108
docker rm $(docker ps -a -q) || true

.github/workflows/test-wallet-webapp-tests.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Test Wallet Webapp Tests
1818
runs-on: ubuntu-latest
1919
env:
20-
AZTEC_VERSION: 3.0.0-devnet.5
20+
AZTEC_VERSION: 3.0.0-devnet.20251212
2121

2222
steps:
2323
- name: Checkout repository
@@ -43,23 +43,23 @@ jobs:
4343
- name: Update path
4444
run: echo "$HOME/.aztec/bin" >> $GITHUB_PATH
4545

46-
- name: Set Aztec version and start sandbox
46+
- name: Set Aztec version and start local network
4747
run: |
4848
aztec-up ${{ env.AZTEC_VERSION }}
4949
docker tag aztecprotocol/aztec:${{ env.AZTEC_VERSION }} aztecprotocol/aztec:latest
50-
aztec start --sandbox &
50+
aztec start --local-network &
5151
52-
- name: Wait for sandbox to be ready
52+
- name: Wait for local network to be ready
5353
run: |
54-
echo "Waiting for sandbox to start..."
54+
echo "Waiting for local network to start..."
5555
MAX_RETRIES=60
5656
for i in $(seq 1 $MAX_RETRIES); do
5757
if curl -s http://localhost:8080/status >/dev/null 2>&1; then
58-
echo "✅ Sandbox is ready!"
58+
echo "✅ Local network is ready!"
5959
break
6060
fi
6161
if [ $i -eq $MAX_RETRIES ]; then
62-
echo "❌ Sandbox failed to start after $MAX_RETRIES attempts"
62+
echo "❌ Local network failed to start after $MAX_RETRIES attempts"
6363
exit 1
6464
fi
6565
echo "Waiting... ($i/$MAX_RETRIES)"
@@ -91,7 +91,7 @@ jobs:
9191
- name: Cleanup
9292
if: always()
9393
run: |
94-
echo "Stopping Aztec sandbox..."
94+
echo "Stopping Aztec local network..."
9595
pkill -f "aztec" || true
9696
docker stop $(docker ps -q) || true
9797
docker rm $(docker ps -a -q) || true

0 commit comments

Comments
 (0)