Skip to content

Commit 3810f32

Browse files
committed
bumping
1 parent a400994 commit 3810f32

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

src/barretenberg/devcontainer-feature.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"description": "The version of Barretenberg to install. Defaults to the latest Nargo compatible version."
1111
}
1212
},
13-
"dependsOn": {
14-
"ghcr.io/signorecello/noir-bb-devcontainer-feature/noir:1": {}
15-
}
13+
"installsAfter": [
14+
"ghcr.io/signorecello/noir-bb-devcontainer-feature/noir:latest"
15+
]
1616
}

src/barretenberg/install.sh

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ fi
1010

1111
apt update && apt install -y curl bash git tar gzip libc++-dev unzip jq
1212

13+
1314
cat >> /etc/profile.d/noir.sh << EOF
1415
1516
curl -L https://raw.githubusercontent.com/AztecProtocol/aztec-packages/refs/heads/master/barretenberg/bbup/install | bash

test/_global/scenarios.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"default": {
3-
"image": "mcr.microsoft.com/devcontainers/base:focal",
3+
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
44
"features": {
55
"noir": {
66
"version": ""
@@ -11,7 +11,7 @@
1111
}
1212
},
1313
"nightly": {
14-
"image": "mcr.microsoft.com/devcontainers/base:focal",
14+
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
1515
"features": {
1616
"noir": {
1717
"version": "nightly"
@@ -22,13 +22,13 @@
2222
}
2323
},
2424
"semantic": {
25-
"image": "mcr.microsoft.com/devcontainers/base:focal",
25+
"image": "mcr.microsoft.com/devcontainers/base:ubuntu-24.04",
2626
"features": {
2727
"noir": {
2828
"version": "1.0.0-beta.3"
2929
},
3030
"barretenberg": {
31-
"version": "0.72.1"
31+
"version": "0.79.0"
3232
}
3333
}
3434
}

test/_global/semantic.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ set -e
55
source dev-container-features-test-lib
66

77
check "validate nargo version" bash -c "nargo --version | grep '1.0.0-beta.3'"
8-
check "validate bb version" bash -c "bb --version | grep '0.72.1'"
8+
check "validate bb version" bash -c "bb --version | grep '0.79.0'"
99

1010
reportResults

0 commit comments

Comments
 (0)