diff options
author | Dan Kegel <[email protected]> | 2022-04-23 15:08:25 -0700 |
---|---|---|
committer | Ron Evans <[email protected]> | 2022-04-25 17:59:39 +0200 |
commit | cdd91988884ba65f201f72f6117ce15dc4373d25 (patch) | |
tree | a9be1382ff8e7a3a6d8760fb774205af1d708267 /.github/workflows/windows.yml | |
parent | 6055e6eb23cdc9e5d25ed860a793ea03f3d60436 (diff) | |
download | tinygo-cdd91988884ba65f201f72f6117ce15dc4373d25.tar.gz tinygo-cdd91988884ba65f201f72f6117ce15dc4373d25.zip |
github: also do tinygo-test-wasi-fast on windows
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r-- | .github/workflows/windows.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 0e2cad5e1..79ce1dccd 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -71,6 +71,9 @@ jobs: - name: Build wasi-libc if: steps.cache-wasi-libc.outputs.cache-hit != 'true' run: make wasi-libc + - name: Install wasmtime + run: | + scoop install wasmtime - name: Test TinyGo shell: bash run: make test GOTESTFLAGS="-v -short" @@ -96,3 +99,5 @@ jobs: run: make smoketest TINYGO=$(PWD)/build/tinygo AVR=0 XTENSA=0 - name: Test stdlib packages run: make tinygo-test + - name: Test stdlib packages on wasi + run: make tinygo-test-wasi-fast |