|
17 | 17 | name: Prediction Market Tests |
18 | 18 | runs-on: ubuntu-latest |
19 | 19 | env: |
20 | | - AZTEC_ENV: sandbox |
| 20 | + AZTEC_ENV: local-network |
21 | 21 | AZTEC_VERSION: 3.0.0-devnet.20251212 |
22 | 22 |
|
23 | 23 | steps: |
@@ -46,23 +46,23 @@ jobs: |
46 | 46 | - name: Update path |
47 | 47 | run: echo "$HOME/.aztec/bin" >> $GITHUB_PATH |
48 | 48 |
|
49 | | - - name: Set Aztec version and start sandbox |
| 49 | + - name: Set Aztec version and start local network |
50 | 50 | run: | |
51 | 51 | aztec-up ${{ env.AZTEC_VERSION }} |
52 | 52 | docker tag aztecprotocol/aztec:${{ env.AZTEC_VERSION }} aztecprotocol/aztec:latest |
53 | | - aztec start --sandbox & |
| 53 | + aztec start --local-network & |
54 | 54 |
|
55 | | - - name: Wait for sandbox to be ready |
| 55 | + - name: Wait for local network to be ready |
56 | 56 | run: | |
57 | | - echo "Waiting for sandbox to start..." |
| 57 | + echo "Waiting for local network to start..." |
58 | 58 | MAX_RETRIES=60 |
59 | 59 | for i in $(seq 1 $MAX_RETRIES); do |
60 | 60 | if curl -s http://localhost:8080/status >/dev/null 2>&1; then |
61 | | - echo "Sandbox is ready!" |
| 61 | + echo "✅ Local network is ready!" |
62 | 62 | break |
63 | 63 | fi |
64 | 64 | if [ $i -eq $MAX_RETRIES ]; then |
65 | | - echo "Sandbox failed to start after $MAX_RETRIES attempts" |
| 65 | + echo "❌ Local network failed to start after $MAX_RETRIES attempts" |
66 | 66 | exit 1 |
67 | 67 | fi |
68 | 68 | echo "Waiting... ($i/$MAX_RETRIES)" |
@@ -101,7 +101,7 @@ jobs: |
101 | 101 | - name: Cleanup |
102 | 102 | if: always() |
103 | 103 | run: | |
104 | | - echo "Stopping Aztec sandbox..." |
| 104 | + echo "Stopping Aztec local network..." |
105 | 105 | pkill -f "aztec" || true |
106 | 106 | docker stop $(docker ps -q) || true |
107 | 107 | docker rm $(docker ps -a -q) || true |
0 commit comments