diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 7ef47799..9d9c4f84 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -6,6 +6,9 @@ on: - main pull_request: +env: + MINIMUM_NOIR_VERSION: 1.0.0-beta.11 + jobs: test: name: Benchmark library @@ -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 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ebde9220..a84d1d8b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: diff --git a/README.md b/README.md index e8d9d00d..83ddf55a 100644 --- a/README.md +++ b/README.md @@ -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.