Skip to content

Commit

Permalink
Merge pull request wasmerio#2381 from wasmerio/no-headless-on-musl-ri…
Browse files Browse the repository at this point in the history
…ght-now

Disable building headless on musl for now
  • Loading branch information
MarkMcCaskey authored Jun 2, 2021
2 parents 81b12b9 + 1ae2922 commit a101ec3
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 a101ec3

Please sign in to comment.