File tree Expand file tree Collapse file tree 5 files changed +35
-139
lines changed
Expand file tree Collapse file tree 5 files changed +35
-139
lines changed Original file line number Diff line number Diff line change @@ -12,33 +12,39 @@ permissions:
1212
1313jobs :
1414 gas_test_prod :
15- name : Gas test (prod wasmer)
15+ name : Gas test (prod wasmer) - Rust ${{ matrix.toolchain }}
1616 runs-on : ubuntu-latest
17+ strategy :
18+ matrix :
19+ toolchain : ["1.92", "1.85"]
1720 steps :
1821 - name : Checkout code
1922 uses : actions/checkout@v5
2023
2124 - name : Install rust
2225 uses : actions-rust-lang/setup-rust-toolchain@v1
2326 with :
24- toolchain : 1.87
27+ toolchain : ${{ matrix.toolchain }}
2528
2629 - name : Run gas tests (prod)
2730 run : |
2831 cd contracts/feature-tests/gas-tests
2932 cargo test --features wasmer-prod
3033
3134 gas_test_experimental :
32- name : Gas test (experimental wasmer)
35+ name : Gas test (experimental wasmer) - Rust ${{ matrix.toolchain }}
3336 runs-on : ubuntu-latest
37+ strategy :
38+ matrix :
39+ toolchain : ["1.92", "1.85"]
3440 steps :
3541 - name : Checkout code
3642 uses : actions/checkout@v5
3743
3844 - name : Install rust
3945 uses : actions-rust-lang/setup-rust-toolchain@v1
4046 with :
41- toolchain : 1.87
47+ toolchain : ${{ matrix.toolchain }}
4248
4349 - name : Run gas tests (prod)
4450 run : |
Original file line number Diff line number Diff line change @@ -48,8 +48,8 @@ path = "../core"
4848features = [" std" ]
4949
5050[dependencies .multiversx-chain-vm-executor ]
51- version = " 0.5.0 "
51+ version = " = 0.5.1 "
5252
5353[dependencies .multiversx-chain-vm-executor-wasmer-experimental ]
54- version = " 0.5.0 "
54+ version = " = 0.5.1 "
5555optional = true
Original file line number Diff line number Diff line change @@ -22,14 +22,13 @@ version = "=0.21.1"
2222path = " ../vm"
2323
2424[dependencies .multiversx-chain-vm-executor ]
25- version = " 0.5.0 "
25+ version = " = 0.5.1 "
2626
2727[dependencies .multiversx-chain-vm-executor-wasmer ]
28- version = " 0.5.0 "
28+ version = " = 0.5.1 "
2929default-features = false
30- features = [" multiversx-chain-vm-executor-published" ]
3130git = " https://github.com/multiversx/mx-vm-executor-rs"
32- rev = " 2eebf910d7c35779fe2cf932c1c2159ba41df030 "
31+ rev = " bcdc91e2e280b31acbf6aa9d03a4c11c70b8cc39 "
3332
3433[workspace ]
3534members = [" ." ]
You can’t perform that action at this time.
0 commit comments