diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 75b34a6..3db58cb 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 @@ -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