Skip to content

Commit

Permalink
Linux MUSL is more different
Browse files Browse the repository at this point in the history
  • Loading branch information
bruceadams committed Apr 8, 2020
1 parent e987b4e commit b5844c4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,15 @@ jobs:
uses: bruceadams/[email protected]
- name: Update
run: rustup update
- name: MUSL
- name: Build
if: runner.os != 'Linux'
run: cargo build --release --verbose
- name: MUSL build
if: runner.os == 'Linux'
run: |
sudo apt-get install musl-tools
rustup target add x86_64-unknown-linux-musl
- name: Build
run: cargo build --release --verbose
cargo build --release --target x86_64-unknown-linux-musl --verbose
- name: Upload Release Asset
uses: actions/[email protected]
with:
Expand Down

0 comments on commit b5844c4

Please sign in to comment.