We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39e365b commit 738402aCopy full SHA for 738402a
.github/workflows/benchmark.yml
@@ -6,6 +6,9 @@ on:
6
- master
7
pull_request:
8
9
+env:
10
+ MINIMUM_NOIR_VERSION: 1.0.0-beta.11
11
+
12
jobs:
13
test:
14
name: Benchmark library
@@ -15,14 +18,14 @@ jobs:
15
18
uses: actions/checkout@v4
16
19
17
20
- name: Install Nargo
- uses: noir-lang/[email protected].3
21
+ uses: noir-lang/[email protected].4
22
with:
- toolchain: 0.36.0
23
+ toolchain: ${{env.MINIMUM_NOIR_VERSION}}
24
25
- name: Install bb
26
run: |
- npm install -g bbup
- bbup -nv 0.36.0
27
+ curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/next/barretenberg/bbup/install | bash
28
+ bbup -nv ${{env.MINIMUM_NOIR_VERSION}}
29
sudo apt install libc++-dev
30
31
- name: Build Noir benchmark programs
0 commit comments