Skip to content

Commit

Permalink
Disable building headless on musl for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Mark McCaskey committed Jun 2, 2021
1 parent 81b12b9 commit 1ae2922
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
- name: Set up base deps on musl
if: matrix.build == 'linux-musl-x64'
run: |
apk add musl-dev curl make libtool libffi-dev gcc automake autoconf git openssl-dev
apk add build-base musl-dev curl make libtool libffi-dev gcc automake autoconf git openssl-dev g++
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
components: "rust-src"
if: needs.setup.outputs.DOING_RELEASE == '1'
- name: Build Minimal Wasmer Headless
if: needs.setup.outputs.DOING_RELEASE == '1'
if: needs.setup.outputs.DOING_RELEASE == '1' && matrix.build != 'linux-musl-x64'
run: |
cargo install xargo
echo "" >> Cargo.toml
Expand Down

0 comments on commit 1ae2922

Please sign in to comment.