Skip to content

Commit 3f580fb

Browse files
authored
Merge pull request #1454 from o1-labs/amcie-update-ocaml-to-330alpha1
Updating OCaml node config with 3.3.0-alpha1 image paths
2 parents 6763a59 + 7a233ad commit 3f580fb

File tree

7 files changed

+14
-9
lines changed

7 files changed

+14
-9
lines changed

.github/workflows/tests.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ jobs:
291291
runs-on: ubuntu-24.04
292292
timeout-minutes: 20
293293
container:
294-
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-beta2-939b08d-noble-devnet
294+
image: gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-noble-devnet
295295
options: --volume debugger_data:/tmp/db
296296
env:
297297
BPF_ALIAS: /coda/0.0.1/29936104443aaf264a7f0192ac64b1c7173198c1ed404c1bcff5e562e05eb7f6-0.0.0.0
@@ -362,7 +362,7 @@ jobs:
362362
- build-tests-webrtc
363363
runs-on: ubuntu-24.04
364364
container:
365-
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-beta2-939b08d-noble-devnet
365+
image: gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-noble-devnet
366366
options: --volume debugger_data:/tmp/db
367367
env:
368368
# to allow local addrs discovery
@@ -449,7 +449,7 @@ jobs:
449449
- build-tests-webrtc
450450
runs-on: ubuntu-24.04
451451
container:
452-
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-beta2-939b08d-noble-devnet
452+
image: gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-noble-devnet
453453
env:
454454
# to allow local addrs discovery
455455
MINA_DISCOVERY_FILTER_ADDR: false

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10+
### OCaml node
11+
12+
- Update the CI and code to compare with the latest release 3.3.0-alpha1-6929a7e
13+
([#1454](https://github.com/o1-labs/mina-rust/pull/1454))
14+
1015
### Added
1116

1217
- **Website**: add o1Labs infrastructure entry, describing the nodes managed by

docker-compose.archive.devnet.compare.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ services:
100100
condition: service_healthy
101101

102102
node-ocaml:
103-
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-beta2-939b08d-noble-devnet
103+
image: gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-noble-devnet
104104
container_name: node-ocaml
105105
environment:
106106
MINA_CLIENT_TRUSTLIST: 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16

node/testing/src/node/ocaml/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ impl Default for OcamlNodeTestingConfig {
5252
fn default() -> Self {
5353
Self {
5454
initial_peers: vec![],
55-
daemon_json: DaemonJson::Custom("/var/lib/coda/config_939b08d8.json".to_owned()),
55+
daemon_json: DaemonJson::Custom("/var/lib/coda/config_6929a7ec.json".to_owned()),
5656
block_producer: None,
5757
}
5858
}
@@ -229,7 +229,7 @@ impl OcamlNodeConfig {
229229

230230
impl OcamlNodeExecutable {
231231
pub const DEFAULT_DOCKER_IMAGE: &'static str =
232-
"gcr.io/o1labs-192920/mina-daemon:3.2.0-beta2-939b08d-noble-devnet";
232+
"gcr.io/o1labs-192920/mina-daemon:3.3.0-alpha1-6929a7e-noble-devnet";
233233
pub const DEFAULT_MINA_EXECUTABLE: &'static str = "mina";
234234

235235
fn docker_container_name(tmp_dir: &temp_dir::TempDir) -> String {

node/testing/src/node/ocaml/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ fn run_ocaml() {
418418
graphql_port: 3086,
419419
client_port: 8301,
420420
initial_peers: Vec::new(),
421-
daemon_json: DaemonJson::Custom("/var/lib/coda/config_939b08d8.json".to_owned()),
421+
daemon_json: DaemonJson::Custom("/var/lib/coda/config_6929a7ec.json".to_owned()),
422422
block_producer: None,
423423
})
424424
.unwrap();

node/testing/src/scenarios/multi_node/basic_connectivity_peer_discovery.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ impl MultiNodeBasicConnectivityPeerDiscovery {
3434

3535
let ocaml_seed_config = OcamlNodeTestingConfig {
3636
initial_peers: Vec::new(),
37-
daemon_json: DaemonJson::Custom("/var/lib/coda/config_939b08d8.json".to_owned()),
37+
daemon_json: DaemonJson::Custom("/var/lib/coda/config_6929a7ec.json".to_owned()),
3838
block_producer: None,
3939
};
4040

node/testing/src/scenarios/solo_node/basic_connectivity_accept_incoming.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ impl SoloNodeBasicConnectivityAcceptIncoming {
110110
let node_id = runner.add_ocaml_node(OcamlNodeTestingConfig {
111111
initial_peers: vec![node_addr.clone()],
112112
daemon_json: DaemonJson::Custom(
113-
"/var/lib/coda/config_939b08d8.json".to_owned(),
113+
"/var/lib/coda/config_6929a7ec.json".to_owned(),
114114
),
115115
block_producer: None,
116116
});

0 commit comments

Comments
 (0)