-
Notifications
You must be signed in to change notification settings - Fork 0
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
3400073
commit 56a14ce
Showing
3 changed files
with
34 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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Linux musl | ||
|
||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Install dependencies | ||
run: sudo apt-get install -y libasound2-dev | ||
- name: Rustup Toolchain | ||
run: rustup toolchain install stable-x86_64-unknown-linux-musl | ||
- name: Rustup Target | ||
run: rustup target add x86_64-unknown-linux-musl | ||
- name: Build | ||
run: cargo +stable-x86_64-unknown-linux-musl build --release --verbose --target x86_64-unknown-linux-musl | ||
- name: Upload a Build Artifact | ||
uses: actions/upload-artifact@v4.3.1 | ||
with: | ||
name: insanity-musl | ||
path: target/x86_64-unknown-linux-musl/release/insanity |
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