@@ -380,24 +380,17 @@ jobs:
380
380
docker pull aztecprotocol/aztec:${{ env.GIT_COMMIT }}
381
381
docker pull aztecprotocol/end-to-end:${{ env.GIT_COMMIT }}
382
382
echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u aztecprotocolci --password-stdin
383
- cd yarn-project/end-to-end
384
383
385
- export INSTALL_CHAOS_MESH=false
386
- export INSTALL_METRICS=false
387
- export NAMESPACE=smoke
388
- export FRESH_INSTALL=true
389
- export VALUES_FILE=ci-smoke.yaml
390
-
391
- ./scripts/network_test.sh ./src/spartan/smoke.test.ts
384
+ INSTALL_METRICS=false ./spartan/scripts/test_kind.sh ./src/spartan/smoke.test.ts ci-smoke.yaml
392
385
- name : Copy Network Logs
393
386
if : always()
394
- run : scripts/copy_from_tester yarn-project/end-to-end/ scripts/network-test .log network-test .log || true
387
+ run : scripts/copy_from_tester spartan/ scripts/logs/test_kind .log test_kind .log || true
395
388
- name : Upload Network Logs
396
389
if : always()
397
390
uses : actions/upload-artifact@v4
398
391
with :
399
392
name : kind-network-smoke.log
400
- path : network-test .log
393
+ path : test_kind .log
401
394
402
395
kind-network-test :
403
396
needs : [images-e2e, configure]
@@ -408,15 +401,15 @@ jobs:
408
401
matrix :
409
402
config :
410
403
# - test: reorg.test.ts
411
- # values: ci
404
+ # values: ci.yaml
412
405
# runner_type: 16core-tester-x86-high-memory
413
406
# timeout: 60
414
407
- test : 4epochs.test.ts
415
- values : ci
408
+ values : ci.yaml
416
409
runner_type : 16core-tester-x86
417
410
timeout : 40
418
411
# - test: gating-passive.test.ts
419
- # values: ci
412
+ # values: ci.yaml
420
413
# runner_type: 16core-tester-x86
421
414
# timeout: 40
422
415
steps :
@@ -433,23 +426,23 @@ jobs:
433
426
run : |
434
427
until docker info &>/dev/null; do sleep 1; done
435
428
export CI=1 USE_CACHE=1
436
- artifact="kind-network-${{matrix.config.test}}-$(./yarn-project /bootstrap.sh hash)"
429
+ artifact="kind-network-${{matrix.config.test}}-$(./spartan /bootstrap.sh hash)"
437
430
if ci3/test_should_run "$artifact"; then
438
431
docker pull aztecprotocol/aztec:${{ env.GIT_COMMIT }}
439
432
docker pull aztecprotocol/end-to-end:${{ env.GIT_COMMIT }}
440
- ./ci .sh test-kind-network ${{ matrix.config.test }} ${{ matrix.config.values }}
433
+ INSTALL_METRICS=false ./spartan/scripts/test_kind .sh "./src/spartan/ ${{ matrix.config.test }}" " ${{ matrix.config.values }}"
441
434
ci3/cache_upload_flag "$artifact"
442
435
fi
443
436
- name : Copy Network Logs
444
437
if : always()
445
- run : scripts/copy_from_tester yarn-project/end-to-end/ scripts/network-test .log network-test .log || true
438
+ run : scripts/copy_from_tester spartan/ scripts/logs/test_kind .log test_kind .log || true
446
439
447
440
- name : Upload Network Logs
448
441
if : always()
449
442
uses : actions/upload-artifact@v4
450
443
with :
451
444
name : kind-network-test-${{ matrix.config.values }}-${{ matrix.config.test }}.log
452
- path : network-test .log
445
+ path : test_kind .log
453
446
454
447
bb-bench :
455
448
runs-on : ubuntu-latest
@@ -501,26 +494,25 @@ jobs:
501
494
alert-comment-cc-users : " @ludamad @codygunton"
502
495
max-items-in-chart : 50
503
496
504
- # TODO(https://github.com/AztecProtocol/aztec-packages/issues/11471) reenable
505
- # boxes-test:
506
- # needs: [ci-rest, configure]
507
- # runs-on: ubuntu-latest
508
- # steps:
509
- # - uses: actions/checkout@v4
510
- # with: { ref: "${{ github.event.pull_request.head.sha }}" }
511
- # - uses: ./.github/ci-setup-action
497
+ boxes-test :
498
+ needs : [ci-rest, configure]
499
+ runs-on : ubuntu-latest
500
+ steps :
501
+ - uses : actions/checkout@v4
502
+ with : { ref: "${{ github.event.pull_request.head.sha }}" }
503
+ - uses : ./.github/ci-setup-action
512
504
513
- # - name: Build Boxes
514
- # uses: ./.github/ensure-builder
515
- # timeout-minutes: 40
516
- # with:
517
- # username: ${{ needs.configure.outputs.username }}
518
- # runner_type: builder-x86
519
- # run: |
520
- # export CI=1 USE_CACHE=1
521
- # if ci3/test_should_run "boxes-test-$(./boxes/bootstrap.sh hash)"; then
522
- # ./bootstrap.sh test-boxes
523
- # fi
505
+ - name : Build Boxes
506
+ uses : ./.github/ensure-builder
507
+ timeout-minutes : 40
508
+ with :
509
+ username : ${{ needs.configure.outputs.username }}
510
+ runner_type : builder-x86
511
+ run : |
512
+ export CI=1 USE_CACHE=1
513
+ if ci3/test_should_run "boxes-test-$(./boxes/bootstrap.sh hash)"; then
514
+ ./bootstrap.sh test-boxes
515
+ fi
524
516
525
517
prover-client-test :
526
518
needs : [ci-rest, configure]
0 commit comments