Skip to content

Commit 0b1e2f8

Browse files
committed
ci(.github): add wasmtime setup
Signed-off-by: Vaughn Dice <[email protected]>
1 parent c0c6966 commit 0b1e2f8

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616

17+
- name: Setup Wasmtime
18+
uses: bytecodealliance/actions/wasmtime/setup@v1
19+
with:
20+
version: "31.0.0"
21+
1722
- name: "Install Go"
1823
uses: actions/setup-go@v3
1924
with:
@@ -30,6 +35,4 @@ jobs:
3035
run: make build
3136

3237
- name: Test
33-
env:
34-
ENABLE_WASM_OPT: false
3538
run: make test

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,11 @@ jobs:
1616
- name: set the release version (tag)
1717
run: echo "RELEASE_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV
1818

19+
- name: Setup Wasmtime
20+
uses: bytecodealliance/actions/wasmtime/setup@v1
21+
with:
22+
version: "31.0.0"
23+
1924
- name: "Install Go"
2025
uses: actions/setup-go@v3
2126
with:
@@ -32,8 +37,6 @@ jobs:
3237
run: make build
3338

3439
- name: Test
35-
env:
36-
ENABLE_WASM_OPT: false
3740
run: make test
3841

3942
- name: generate checksums

0 commit comments

Comments
 (0)