Skip to content

Commit

Permalink
Merge #3083
Browse files Browse the repository at this point in the history
3083: Disable wasm build in build CI r=epilys a=epilys

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.


Co-authored-by: Manos Pitsidianakis <[email protected]>
  • Loading branch information
bors[bot] and epilys authored Aug 9, 2022
2 parents 22c3736 + 842d511 commit a6ddf4e
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 a6ddf4e

Please sign in to comment.