File tree 2 files changed +5
-12
lines changed
2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change 50
50
test :
51
51
name : Run Tests
52
52
runs-on : ubuntu-latest
53
- strategy :
54
- matrix :
55
- ci_test_mode : [0, 1]
56
-
57
53
steps :
58
54
- uses : actions/checkout@v4
59
55
64
60
toolchain : stable
65
61
66
62
- name : Run Cargo test
67
- run : CI_TEST_MODE=${{ matrix.ci_test_mode }} cargo test
63
+ run : cargo test
Original file line number Diff line number Diff line change @@ -74,13 +74,10 @@ where
74
74
75
75
Self {
76
76
ports : vec ! [ config. rollup. rpc. bind_port] ,
77
- image : config. docker_image . clone ( ) . unwrap_or_else ( || {
78
- let base_img = DEFAULT_CITREA_DOCKER_IMAGE ;
79
- match std:: env:: var ( "CI_TEST_MODE" ) {
80
- Ok ( v) if v == "1" || v == "true" => format ! ( "{base_img}-ci" ) ,
81
- _ => base_img. to_string ( ) ,
82
- }
83
- } ) ,
77
+ image : config
78
+ . docker_image
79
+ . clone ( )
80
+ . unwrap_or ( DEFAULT_CITREA_DOCKER_IMAGE . to_string ( ) ) ,
84
81
cmd : args,
85
82
log_path : config. dir . join ( "stdout.log" ) ,
86
83
volume : VolumeConfig {
You can’t perform that action at this time.
0 commit comments