Skip to content

Commit

Permalink
Moving to using musl on a Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
bazhenov committed Dec 21, 2023
1 parent e480639 commit 8e396dc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ jobs:
strategy:
matrix:
include:
target: x86_64-unknown-linux-gnu
- os: ubuntu-22.04
target: x86_64-unknown-linux-musl
- os: macos-12
target: x86_64-apple-darwin
- os: macos-12
Expand All @@ -68,6 +68,9 @@ jobs:
with:
target: ${{ matrix.target }}
- uses: Swatinem/rust-cache@v2
- name: Install musl tools
if: matrix.target == 'x86_64-unknown-linux-musl'
run: sudo apt-get install -y musl-tools
- name: Build
run: cargo install --locked --target ${{ matrix.target }} --root release --path .
- name: Package
Expand Down

0 comments on commit 8e396dc

Please sign in to comment.