Skip to content
This repository was archived by the owner on Jul 10, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 0 additions & 92 deletions .github/actions/benchmark/action.yml

This file was deleted.

10 changes: 0 additions & 10 deletions .github/actions/js-tests/action.yml

This file was deleted.

16 changes: 0 additions & 16 deletions .github/actions/noir-tests/action.yml

This file was deleted.

85 changes: 0 additions & 85 deletions .github/actions/setup-aztec/action.yml

This file was deleted.

50 changes: 4 additions & 46 deletions .github/workflows/main-tests.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Main Branch Tests
name: Main Tests

on:
push:
Expand All @@ -10,48 +10,6 @@ concurrency:
cancel-in-progress: true

jobs:
# ══════════════════════════════════════════════════════════════════════════════
# JS TESTS
# ══════════════════════════════════════════════════════════════════════════════
js-tests:
name: JS Tests
runs-on: ubuntu-latest-m
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Aztec environment
uses: ./.github/actions/setup-aztec
with:
start-pxe: 'true'
run-codegen: 'true'

- name: Run JS tests
uses: ./.github/actions/js-tests

# ══════════════════════════════════════════════════════════════════════════════
# NOIR TESTS
# ══════════════════════════════════════════════════════════════════════════════
noir-tests:
name: Noir Tests
runs-on: ubuntu-latest-m
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Aztec environment
uses: ./.github/actions/setup-aztec
with:
start-pxe: 'false'
run-codegen: 'false'

- name: Run Noir tests
uses: ./.github/actions/noir-tests
with:
threads: '12'
tests:
uses: defi-wonderland/aztec-ci-actions/.github/workflows/run-tests.yml@v0
secrets: inherit
89 changes: 10 additions & 79 deletions .github/workflows/pr-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,84 +7,15 @@ concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true

permissions:
pull-requests: write
issues: write

env:
BENCH_DIR: ./benchmarks

jobs:
# ══════════════════════════════════════════════════════════════════════════════
# BENCHMARK JOB
# ══════════════════════════════════════════════════════════════════════════════
benchmark:
name: Benchmark
runs-on: ubuntu-latest-m
timeout-minutes: 120
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}
fetch-depth: 0

- name: Setup Aztec environment
uses: ./.github/actions/setup-aztec
with:
start-pxe: 'true'
run-codegen: 'true'

- name: Run benchmarks
uses: ./.github/actions/benchmark
with:
pr-number: ${{ github.event.pull_request.number }}
base-ref: ${{ github.event.pull_request.base.ref }}
head-ref: ${{ github.event.pull_request.head.ref }}
bench-dir: ${{ env.BENCH_DIR }}

# ══════════════════════════════════════════════════════════════════════════════
# JS TESTS JOB
# ══════════════════════════════════════════════════════════════════════════════
js-tests:
name: JS Tests
runs-on: ubuntu-latest-m
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
checks:
uses: defi-wonderland/aztec-ci-actions/.github/workflows/run-tests.yml@v0
secrets: inherit

- name: Setup Aztec environment
uses: ./.github/actions/setup-aztec
with:
start-pxe: 'true'
run-codegen: 'true'

- name: Run JS tests
uses: ./.github/actions/js-tests

# ══════════════════════════════════════════════════════════════════════════════
# NOIR TESTS JOB
# ══════════════════════════════════════════════════════════════════════════════
noir-tests:
name: Noir Tests
runs-on: ubuntu-latest-m
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup Aztec environment
uses: ./.github/actions/setup-aztec
with:
start-pxe: 'false'
run-codegen: 'false'

- name: Run Noir tests
uses: ./.github/actions/noir-tests
with:
threads: '12'
benchmark:
uses: defi-wonderland/aztec-benchmark/.github/workflows/pr-benchmark.yml@4.0.0-devnet.1-patch.0
permissions:
pull-requests: write
issues: write
actions: read
secrets: inherit
Loading