Skip to content

Commit 5fb0bf2

Browse files
Merge pull request #2271 from multiversx/executor-upgrade-v0.5.1
executor - linux linker fix (probestack issue)
2 parents 5a5cb6c + 6c487aa commit 5fb0bf2

File tree

5 files changed

+35
-139
lines changed

5 files changed

+35
-139
lines changed

.github/workflows/gas-test.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,33 +12,39 @@ permissions:
1212

1313
jobs:
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: |

Cargo.lock

Lines changed: 19 additions & 128 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

chain/vm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@ path = "../core"
4848
features = ["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"
5555
optional = true

chain/wasmer-prod/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,13 @@ version = "=0.21.1"
2222
path = "../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"
2929
default-features = false
30-
features = ["multiversx-chain-vm-executor-published"]
3130
git = "https://github.com/multiversx/mx-vm-executor-rs"
32-
rev = "2eebf910d7c35779fe2cf932c1c2159ba41df030"
31+
rev = "bcdc91e2e280b31acbf6aa9d03a4c11c70b8cc39"
3332

3433
[workspace]
3534
members = ["."]

0 commit comments

Comments
 (0)