ci: pin musl to 1.71.0 for now when building releases (#1282)

This commit is contained in:
Clement Tsang 2023-08-24 23:21:03 -04:00 committed by GitHub
parent e8f6d4853a
commit 44cc00564a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -61,6 +61,7 @@ jobs:
os: "ubuntu-20.04",
target: "x86_64-unknown-linux-musl",
cross: false,
rust: "1.71.0",
}
- {
os: "ubuntu-20.04",
@ -130,7 +131,7 @@ jobs:
if: matrix.info.container == ''
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
with:
toolchain: stable
toolchain: ${{ matrix.info.rust || 'stable' }}
target: ${{ matrix.info.target }}
- name: Set up Rust toolchain (non-GitHub container)
@ -289,7 +290,7 @@ jobs:
matrix:
info:
- { target: "x86_64-unknown-linux-gnu", cross: false, dpkg: amd64 }
- { target: "x86_64-unknown-linux-musl", cross: false, dpkg: amd64 }
- { target: "x86_64-unknown-linux-musl", cross: false, dpkg: amd64, rust: "1.71.0" }
- {
target: "aarch64-unknown-linux-gnu",
cross: true,
@ -323,7 +324,7 @@ jobs:
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
with:
toolchain: stable
toolchain: ${{ matrix.info.rust || 'stable' }}
target: ${{ matrix.info.target }}
# TODO: Could I use the previous jobs to skip this call?
@ -411,7 +412,7 @@ jobs:
matrix:
info:
- { target: "x86_64-unknown-linux-gnu" }
- { target: "x86_64-unknown-linux-musl" }
- { target: "x86_64-unknown-linux-musl", rust: "1.71.0" }
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
@ -421,7 +422,7 @@ jobs:
- name: Set up Rust toolchain
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
with:
toolchain: stable
toolchain: ${{ matrix.info.rust || 'stable' }}
target: ${{ matrix.info.target }}
# TODO: Could I use the previous jobs to skip this call?