Skip to content
Merged
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
9 changes: 6 additions & 3 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ on:
- main
pull_request:

env:
MINIMUM_NOIR_VERSION: 1.0.0-beta.11

jobs:
test:
name: Benchmark library
Expand All @@ -17,12 +20,12 @@ jobs:
- name: Install Nargo
uses: noir-lang/noirup@v0.1.4
with:
toolchain: nightly-2025-08-15
toolchain: ${{env.MINIMUM_NOIR_VERSION}}

- name: Install bb
run: |
curl -L https://bbup.aztec.network | bash
~/.bb/bbup -nv 1.0.0-beta.9
curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/next/barretenberg/bbup/install | bash
~/.bb/bbup -nv ${{env.MINIMUM_NOIR_VERSION}}
sudo apt install libc++-dev

- name: Build Noir benchmark programs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

env:
CARGO_TERM_COLOR: always
MINIMUM_NOIR_VERSION: nightly-2025-08-15
MINIMUM_NOIR_VERSION: 1.0.0-beta.11

jobs:
noir-version-list:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ For the arithmetic operations it is important to notice the difference between c

## Noir Version Compatibility

This library is tested with all stable releases since 1.0.0-beta.7 as well as nightly.
This library is tested with all stable releases since 1.0.0-beta.11 as well as nightly.

Refer to [Noir's docs](https://noir-lang.org/docs/getting_started/noir_installation) for installation steps.

Expand Down
Loading