Skip to content

Commit 338ee19

Browse files
authored
Merge pull request #1250 from o1-labs/dw/update-mina-daemon
OCaml nodes: bump up to release 3.2.0-beta1
2 parents cf67d94 + 9298f34 commit 338ee19

File tree

7 files changed

+12
-10
lines changed

7 files changed

+12
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ jobs:
251251
needs: [ build-tests, build-tests-webrtc ]
252252
runs-on: ubuntu-22.04
253253
container:
254-
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-alpha1-7f94ae0-bullseye-devnet
254+
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-beta1-978866c-bullseye-devnet
255255
options: --volume debugger_data:/tmp/db
256256
env:
257257
BPF_ALIAS: /coda/0.0.1/29936104443aaf264a7f0192ac64b1c7173198c1ed404c1bcff5e562e05eb7f6-0.0.0.0
@@ -314,7 +314,7 @@ jobs:
314314
- build-tests-webrtc
315315
runs-on: ubuntu-22.04
316316
container:
317-
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-alpha1-7f94ae0-bullseye-devnet
317+
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-beta1-978866c-bullseye-devnet
318318
options: --volume debugger_data:/tmp/db
319319
env:
320320
# to allow local addrs discovery
@@ -400,7 +400,7 @@ jobs:
400400
- build-tests-webrtc
401401
runs-on: ubuntu-22.04
402402
container:
403-
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-alpha1-7f94ae0-bullseye-devnet
403+
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-beta1-978866c-bullseye-devnet
404404
env:
405405
# to allow local addrs discovery
406406
OPENMINA_DISCOVERY_FILTER_ADDR: false

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1212
- Update the CI and code to compare with the latest release 3.2.0-alpha1-7f94ae0
1313
([#1236](https://github.com/o1-labs/openmina/pull/1236), fix
1414
[#1158](https://github.com/o1-labs/openmina/issues/1158))
15+
- Update the CI and code to compare with the latest release 3.2.0-beta1-978866c
16+
([#1250](https://github.com/o1-labs/openmina/pull/1250)
17+
1518

1619
### Added
1720

@@ -33,7 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3336
### Changed
3437

3538
- **Build System**: Enhanced Makefile with documentation-related targets and comprehensive formatting commands ([#1234](https://github.com/o1-labs/openmina/pull/1234))
36-
3739
### Fixed
3840

3941
- **Documentation**: Resolved broken links and bare URL warnings in Rust

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-alpha1-7f94ae0-bullseye-devnet
103+
image: gcr.io/o1labs-192920/mina-daemon:3.2.0-beta1-978866c-bullseye-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
@@ -20,7 +20,7 @@ impl Default for OcamlNodeTestingConfig {
2020
fn default() -> Self {
2121
Self {
2222
initial_peers: vec![],
23-
daemon_json: DaemonJson::Custom("/var/lib/coda/config_7f94ae0b.json".to_owned()),
23+
daemon_json: DaemonJson::Custom("/var/lib/coda/config_978866cd.json".to_owned()),
2424
block_producer: None,
2525
}
2626
}
@@ -131,7 +131,7 @@ impl OcamlNodeConfig {
131131
impl OcamlNodeExecutable {
132132
// pub const DEFAULT_DOCKER_IMAGE: &'static str = "vladsimplestakingcom/mina-light:2.0.0rampup4";
133133
pub const DEFAULT_DOCKER_IMAGE: &'static str =
134-
"gcr.io/o1labs-192920/mina-daemon:3.2.0-alpha1-7f94ae0-bullseye-devnet";
134+
"gcr.io/o1labs-192920/mina-daemon:3.2.0-beta1-978866c-bullseye-devnet";
135135
pub const DEFAULT_MINA_EXECUTABLE: &'static str = "mina";
136136

137137
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
@@ -411,7 +411,7 @@ fn run_ocaml() {
411411
graphql_port: 3086,
412412
client_port: 8301,
413413
initial_peers: Vec::new(),
414-
daemon_json: DaemonJson::Custom("/var/lib/coda/config_7f94ae0b.json".to_owned()),
414+
daemon_json: DaemonJson::Custom("/var/lib/coda/config_978866cd.json".to_owned()),
415415
block_producer: None,
416416
})
417417
.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_7f94ae0b.json".to_owned()),
37+
daemon_json: DaemonJson::Custom("/var/lib/coda/config_978866cd.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
@@ -108,7 +108,7 @@ impl SoloNodeBasicConnectivityAcceptIncoming {
108108
let node_id = runner.add_ocaml_node(OcamlNodeTestingConfig {
109109
initial_peers: vec![node_addr.clone()],
110110
daemon_json: DaemonJson::Custom(
111-
"/var/lib/coda/config_7f94ae0b.json".to_owned(),
111+
"/var/lib/coda/config_978866cd.json".to_owned(),
112112
),
113113
block_producer: None,
114114
});

0 commit comments

Comments
 (0)