Skip to content

Commit

Permalink
Added build action for x86_64-unknown-linux-musl (#137)
Browse files Browse the repository at this point in the history
related to: #136
  • Loading branch information
ken-matsui authored Oct 23, 2024
1 parent 0dc3301 commit bdb829a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,25 @@ jobs:
- name: Build
run: cargo build --verbose

build-targets:
runs-on: ubuntu-latest

strategy:
matrix:
target:
- x86_64-unknown-linux-musl

steps:
- uses: actions/checkout@v4

- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: ${{ matrix.target }}

- name: Build for ${{ matrix.target }}
run: cargo build --release --target ${{ matrix.target }}

run:
runs-on: ubuntu-latest

Expand Down

0 comments on commit bdb829a

Please sign in to comment.