Skip to content

Commit 15cdb3c

Browse files
committed
wasip3: Add first test for wasi:clocks/monotonic-clock
1 parent 39773f0 commit 15cdb3c

File tree

14 files changed

+2780
-1
lines changed

14 files changed

+2780
-1
lines changed

.github/workflows/compile-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,15 @@ jobs:
5050
- name: Install wasm32-wasip1 target for Rust
5151
uses: actions-rust-lang/setup-rust-toolchain@v1
5252
with:
53+
toolchain: nightly
5354
target: wasm32-wasip1
5455

56+
- name: Install wasm32-wasip2 target for Rust
57+
uses: actions-rust-lang/setup-rust-toolchain@v1
58+
with:
59+
toolchain: nightly
60+
target: wasm32-wasip2
61+
5562
- name: Build tests
5663
working-directory: tests/rust
5764
run: |

tests/rust/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
args.verbose = True
2222

2323
SYSTEMS = ['wasm32']
24-
VERSIONS = ['wasip1'] # + ['wasip2', 'wasip3']
24+
VERSIONS = ['wasip1', 'wasip3']
2525

2626
def compute_target(system, version):
2727
return f"{system}-{version}"

tests/rust/wasm32-wasip3/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
target/

0 commit comments

Comments
 (0)