Skip to content

Commit 74482cb

Browse files
committed
wasip3: Add first test for wasi:clocks/monotonic-clock
1 parent 2e201ab commit 74482cb

File tree

14 files changed

+2747
-1
lines changed

14 files changed

+2747
-1
lines changed

.github/workflows/compile-tests.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,15 @@ jobs:
6060
- name: Install wasm32-wasip1 target for Rust
6161
uses: actions-rust-lang/setup-rust-toolchain@v1
6262
with:
63+
toolchain: nightly
6364
target: wasm32-wasip1
6465

66+
- name: Install wasm32-wasip2 target for Rust
67+
uses: actions-rust-lang/setup-rust-toolchain@v1
68+
with:
69+
toolchain: nightly
70+
target: wasm32-wasip2
71+
6572
- name: Build tests
6673
working-directory: tests/rust
6774
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)