We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3278038 commit 9471fceCopy full SHA for 9471fce
.github/workflows/release.yml
@@ -26,14 +26,14 @@ jobs:
26
- os: macos-latest
27
target: x86_64-apple-darwin
28
- os: ubuntu-latest
29
- target: x86_64-unknown-linux-musl
+ target: x86_64-unknown-linux-gnu
30
+ container: quay.io/pypa/manylinux2014_x86_64
31
steps:
32
- uses: actions/checkout@v4
33
- name: Install Rust toolchain
- run: rustup toolchain install --target ${{ matrix.target }} --profile minimal stable
34
- - name: Install musl toolchain
35
- if: matrix.os == 'ubuntu-latest'
36
- run: sudo apt-get install -y musl-tools
+ uses: dtolnay/rust-toolchain@stable
+ with:
+ targets: ${{ matrix.target }}
37
- name: Set up cargo cache
38
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
39
- name: Build
0 commit comments