File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 16
16
# "Integration Test" is a required check, don't change the name
17
17
name : Integration Test
18
18
runs-on : ubuntu-latest
19
+ strategy :
20
+ matrix :
21
+ validium :
22
+ - false
23
+ - true
19
24
steps :
20
25
- name : Checkout sources
21
26
uses : actions/checkout@v4
26
31
- name : Caching
27
32
uses : Swatinem/rust-cache@v2
28
33
29
- - name : Run L2 integration test
34
+ - name : Prepare configuration
30
35
run : |
31
36
cd crates/l2
32
37
cp configs/sequencer_config_example.toml configs/sequencer_config.toml
38
+ if [ "${{ matrix.validium }}" = "true" ]; then
39
+ sed -i.bak 's/^validium = false$/validium = true/' configs/sequencer_config.toml && rm configs/sequencer_config.toml.bak
40
+ fi
41
+
42
+ - name : Run L2 integration test
43
+ run : |
44
+ cd crates/l2
33
45
make ci_test
You can’t perform that action at this time.
0 commit comments