Skip to content

Commit 4917199

Browse files
committed
fix: update bb download url
1 parent 1abb4e4 commit 4917199

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ jobs:
796796
- name: Install Barretenberg (bb)
797797
if: steps.cache-bb.outputs.cache-hit != 'true'
798798
run: |
799-
curl -fsSL "https://github.com/gnosisguild/enclave/releases/download/v0.1.15/barretenberg-amd64-linux-${{ env.BB_VERSION }}.tar.gz" -o bb.tar.gz
799+
curl -fsSL "https://github.com/gnosisguild/enclave/releases/download/v0.1.15/barretenberg-amd64-linux-v${{ env.BB_VERSION }}.tar.gz" -o bb.tar.gz
800800
mkdir -p bb_extract && tar -xzf bb.tar.gz -C bb_extract
801801
BB_BIN=$(find bb_extract -name bb -type f | head -n 1)
802802
sudo mv "$BB_BIN" /usr/local/bin/bb
@@ -878,7 +878,7 @@ jobs:
878878
- name: Install Barretenberg (bb)
879879
if: steps.cache-bb.outputs.cache-hit != 'true'
880880
run: |
881-
curl -fsSL "https://github.com/gnosisguild/enclave/releases/download/v0.1.15/barretenberg-amd64-linux-${{ env.BB_VERSION }}.tar.gz" -o bb.tar.gz
881+
curl -fsSL "https://github.com/gnosisguild/enclave/releases/download/v0.1.15/barretenberg-amd64-linux-v${{ env.BB_VERSION }}.tar.gz" -o bb.tar.gz
882882
mkdir -p bb_extract && tar -xzf bb.tar.gz -C bb_extract
883883
BB_BIN=$(find bb_extract -name bb -type f | head -n 1)
884884
sudo mv "$BB_BIN" /usr/local/bin/bb

crates/zk-prover/versions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"required_bb_version": "3.0.0-nightly.20260102",
33
"required_circuits_version": "0.1.15",
4-
"bb_download_url": "https://github.com/gnosisguild/enclave/releases/download/v0.1.15/barretenberg-{arch}-{os}-{version}.tar.gz",
4+
"bb_download_url": "https://github.com/gnosisguild/enclave/releases/download/v0.1.15/barretenberg-{arch}-{os}-v{version}.tar.gz",
55
"bb_checksums": {
66
"amd64-linux": "4847ae82a1d25f9489057da2c33d1abdee3ba457e8219028a2c2336f850f8cd7",
77
"amd64-darwin": "9137b49be56bfea5b62203b7ae4cb67c9ecc12fe1692a89badf2cf4b57323fdc",

0 commit comments

Comments
 (0)