Skip to content

Commit

Permalink
Disable wasm build in build CI
Browse files Browse the repository at this point in the history
Wasm build was added unnecessarily in the build github action in
4710a2a

The wasm build is not currently part of the binary assets of a release,
so this commits disable it.

By the way, the wasm build fails because the wasm32-wasi target is
not added with rustup before the `make build-wasmer-wasm` is called.
  • Loading branch information
epilys committed Aug 9, 2022
1 parent 22c3736 commit 842d511
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,11 +196,11 @@ jobs:
shell: bash
run: |
make build-wasmer
- name: Build Wasmer binary on Wasm32-WASI without LLVM
if: matrix.build_wasm
shell: bash
run: |
make build-wasmer-wasm
#- name: Build Wasmer binary on Wasm32-WASI without LLVM
# if: matrix.build_wasm
# shell: bash
# run: |
# make build-wasmer-wasm
- name: Build Wapm binary
run: |
make build-wapm
Expand Down

0 comments on commit 842d511

Please sign in to comment.