File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 52
52
runs-on : ubuntu-latest
53
53
strategy :
54
54
matrix :
55
- short_prefix : [0, 1]
55
+ ci_test_mode : [0, 1]
56
56
57
57
steps :
58
58
- uses : actions/checkout@v4
64
64
toolchain : stable
65
65
66
66
- name : Run Cargo test
67
- run : SHORT_PREFIX =${{ matrix.short_prefix }} cargo test
67
+ run : CI_TEST_MODE =${{ matrix.ci_test_mode }} cargo test
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ use crate::{
12
12
13
13
const DEFAULT_BITCOIN_DOCKER_IMAGE : & str = "bitcoin/bitcoin:28.0" ;
14
14
const DEFAULT_CITREA_DOCKER_IMAGE : & str =
15
- "chainwayxyz/citrea-test:57f9b46a366413f2e5b04a2bca07abcc21ad0dde " ;
15
+ "chainwayxyz/citrea-test:d3a6f5f25175cbfa925ff8fad5069828bd30c06c " ;
16
16
17
17
#[ derive( Debug ) ]
18
18
pub struct VolumeConfig {
76
76
ports : vec ! [ config. rollup. rpc. bind_port] ,
77
77
image : config. docker_image . clone ( ) . unwrap_or_else ( || {
78
78
let base_img = DEFAULT_CITREA_DOCKER_IMAGE ;
79
- match std:: env:: var ( "SHORT_PREFIX " ) {
80
- Ok ( v) if v == "1" || v == "true" => format ! ( "{base_img}-short-prefix " ) ,
79
+ match std:: env:: var ( "CI_TEST_MODE " ) {
80
+ Ok ( v) if v == "1" || v == "true" => format ! ( "{base_img}-ci " ) ,
81
81
_ => base_img. to_string ( ) ,
82
82
}
83
83
} ) ,
You can’t perform that action at this time.
0 commit comments