Skip to content

Commit 3945eaf

Browse files
committed
Merge branch 'main' into esad/renaming-state-transition
2 parents b16123e + 63e1db6 commit 3945eaf

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: .github/workflows/code_checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
runs-on: ubuntu-latest
5353
strategy:
5454
matrix:
55-
short_prefix: [0, 1]
55+
ci_test_mode: [0, 1]
5656

5757
steps:
5858
- uses: actions/checkout@v4
@@ -64,4 +64,4 @@ jobs:
6464
toolchain: stable
6565

6666
- name: Run Cargo test
67-
run: SHORT_PREFIX=${{ matrix.short_prefix }} cargo test
67+
run: CI_TEST_MODE=${{ matrix.ci_test_mode }} cargo test

Diff for: src/config/docker.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use crate::{
1212

1313
const DEFAULT_BITCOIN_DOCKER_IMAGE: &str = "bitcoin/bitcoin:28.0";
1414
const DEFAULT_CITREA_DOCKER_IMAGE: &str =
15-
"chainwayxyz/citrea-test:57f9b46a366413f2e5b04a2bca07abcc21ad0dde";
15+
"chainwayxyz/citrea-test:d3a6f5f25175cbfa925ff8fad5069828bd30c06c";
1616

1717
#[derive(Debug)]
1818
pub struct VolumeConfig {
@@ -76,8 +76,8 @@ where
7676
ports: vec![config.rollup.rpc.bind_port],
7777
image: config.docker_image.clone().unwrap_or_else(|| {
7878
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"),
8181
_ => base_img.to_string(),
8282
}
8383
}),

0 commit comments

Comments
 (0)