Skip to content
This repository was archived by the owner on Oct 3, 2025. It is now read-only.

Commit b0ce7fb

Browse files
ci: fix github action
Signed-off-by: Henry Gressmann <[email protected]>
1 parent fee68d0 commit b0ce7fb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/test.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ jobs:
5151
name: "armv7 (32-Bit Raspberry Pi)"
5252
target: armv7-unknown-linux-gnueabihf
5353

54+
name: Run tests on ${{ matrix.os }}, ${{ matrix.name }})
5455
runs-on: ${{ matrix.os }}
5556
steps:
5657
- name: Checkout code
@@ -70,6 +71,7 @@ jobs:
7071
uses: actions/download-artifact@v4
7172
with:
7273
name: wasm
74+
path: examples/rust/out
7375

7476
- name: Run tests
7577
run: cargo test --workspace ${{ matrix.args }} && cargo run --example wasm-rust all

CONTRIBUTING.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,8 @@ $ cargo test-wast {path}
4444
# Run a specific example (run without arguments to see available examples)
4545
# The wasm test files required to run the `wasm-rust` examples are not
4646
# included in the main repository.
47-
# To build these, you will need to run `./examples/rust/build.sh`.
47+
# To build these, you will need to install binaryen and wabt
48+
# and run `./examples/rust/build.sh`.
4849
$ cargo run --example {example_name}
4950
```
5051

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ panic="abort"
5353
inherits="release"
5454

5555
[profile.samply]
56-
inherits = "release"
57-
debug = true
56+
inherits="release"
57+
debug=true

0 commit comments

Comments
 (0)