-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e987b4e
commit b5844c4
Showing
1 changed file
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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: | ||
|