File tree Expand file tree Collapse file tree 7 files changed +12
-10
lines changed Expand file tree Collapse file tree 7 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ jobs:
251
251
needs : [ build-tests, build-tests-webrtc ]
252
252
runs-on : ubuntu-22.04
253
253
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
255
255
options : --volume debugger_data:/tmp/db
256
256
env :
257
257
BPF_ALIAS : /coda/0.0.1/29936104443aaf264a7f0192ac64b1c7173198c1ed404c1bcff5e562e05eb7f6-0.0.0.0
@@ -314,7 +314,7 @@ jobs:
314
314
- build-tests-webrtc
315
315
runs-on : ubuntu-22.04
316
316
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
318
318
options : --volume debugger_data:/tmp/db
319
319
env :
320
320
# to allow local addrs discovery
@@ -400,7 +400,7 @@ jobs:
400
400
- build-tests-webrtc
401
401
runs-on : ubuntu-22.04
402
402
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
404
404
env :
405
405
# to allow local addrs discovery
406
406
OPENMINA_DISCOVERY_FILTER_ADDR : false
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
12
12
- Update the CI and code to compare with the latest release 3.2.0-alpha1-7f94ae0
13
13
([ #1236 ] ( https://github.com/o1-labs/openmina/pull/1236 ) , fix
14
14
[ #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
+
15
18
16
19
### Added
17
20
@@ -33,7 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
33
36
### Changed
34
37
35
38
- ** Build System** : Enhanced Makefile with documentation-related targets and comprehensive formatting commands ([ #1234 ] ( https://github.com/o1-labs/openmina/pull/1234 ) )
36
-
37
39
### Fixed
38
40
39
41
- ** Documentation** : Resolved broken links and bare URL warnings in Rust
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ services:
100
100
condition : service_healthy
101
101
102
102
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
104
104
container_name : node-ocaml
105
105
environment :
106
106
MINA_CLIENT_TRUSTLIST : 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ impl Default for OcamlNodeTestingConfig {
20
20
fn default ( ) -> Self {
21
21
Self {
22
22
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 ( ) ) ,
24
24
block_producer : None ,
25
25
}
26
26
}
@@ -131,7 +131,7 @@ impl OcamlNodeConfig {
131
131
impl OcamlNodeExecutable {
132
132
// pub const DEFAULT_DOCKER_IMAGE: &'static str = "vladsimplestakingcom/mina-light:2.0.0rampup4";
133
133
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" ;
135
135
pub const DEFAULT_MINA_EXECUTABLE : & ' static str = "mina" ;
136
136
137
137
fn docker_container_name ( tmp_dir : & temp_dir:: TempDir ) -> String {
Original file line number Diff line number Diff line change @@ -411,7 +411,7 @@ fn run_ocaml() {
411
411
graphql_port : 3086 ,
412
412
client_port : 8301 ,
413
413
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 ( ) ) ,
415
415
block_producer : None ,
416
416
} )
417
417
. unwrap ( ) ;
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ impl MultiNodeBasicConnectivityPeerDiscovery {
34
34
35
35
let ocaml_seed_config = OcamlNodeTestingConfig {
36
36
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 ( ) ) ,
38
38
block_producer : None ,
39
39
} ;
40
40
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ impl SoloNodeBasicConnectivityAcceptIncoming {
108
108
let node_id = runner. add_ocaml_node ( OcamlNodeTestingConfig {
109
109
initial_peers : vec ! [ node_addr. clone( ) ] ,
110
110
daemon_json : DaemonJson :: Custom (
111
- "/var/lib/coda/config_7f94ae0b .json" . to_owned ( ) ,
111
+ "/var/lib/coda/config_978866cd .json" . to_owned ( ) ,
112
112
) ,
113
113
block_producer : None ,
114
114
} ) ;
You can’t perform that action at this time.
0 commit comments