mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-23 05:34:57 +02:00
ci: pin musl to 1.71.0 for now when building releases (#1282)
This commit is contained in:
parent
e8f6d4853a
commit
44cc00564a
11
.github/workflows/build_releases.yml
vendored
11
.github/workflows/build_releases.yml
vendored
@ -61,6 +61,7 @@ jobs:
|
|||||||
os: "ubuntu-20.04",
|
os: "ubuntu-20.04",
|
||||||
target: "x86_64-unknown-linux-musl",
|
target: "x86_64-unknown-linux-musl",
|
||||||
cross: false,
|
cross: false,
|
||||||
|
rust: "1.71.0",
|
||||||
}
|
}
|
||||||
- {
|
- {
|
||||||
os: "ubuntu-20.04",
|
os: "ubuntu-20.04",
|
||||||
@ -130,7 +131,7 @@ jobs:
|
|||||||
if: matrix.info.container == ''
|
if: matrix.info.container == ''
|
||||||
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
|
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: ${{ matrix.info.rust || 'stable' }}
|
||||||
target: ${{ matrix.info.target }}
|
target: ${{ matrix.info.target }}
|
||||||
|
|
||||||
- name: Set up Rust toolchain (non-GitHub container)
|
- name: Set up Rust toolchain (non-GitHub container)
|
||||||
@ -289,7 +290,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
info:
|
info:
|
||||||
- { target: "x86_64-unknown-linux-gnu", cross: false, dpkg: amd64 }
|
- { 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",
|
target: "aarch64-unknown-linux-gnu",
|
||||||
cross: true,
|
cross: true,
|
||||||
@ -323,7 +324,7 @@ jobs:
|
|||||||
- name: Set up Rust toolchain
|
- name: Set up Rust toolchain
|
||||||
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
|
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: ${{ matrix.info.rust || 'stable' }}
|
||||||
target: ${{ matrix.info.target }}
|
target: ${{ matrix.info.target }}
|
||||||
|
|
||||||
# TODO: Could I use the previous jobs to skip this call?
|
# TODO: Could I use the previous jobs to skip this call?
|
||||||
@ -411,7 +412,7 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
info:
|
info:
|
||||||
- { target: "x86_64-unknown-linux-gnu" }
|
- { target: "x86_64-unknown-linux-gnu" }
|
||||||
- { target: "x86_64-unknown-linux-musl" }
|
- { target: "x86_64-unknown-linux-musl", rust: "1.71.0" }
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||||
@ -421,7 +422,7 @@ jobs:
|
|||||||
- name: Set up Rust toolchain
|
- name: Set up Rust toolchain
|
||||||
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
|
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
|
||||||
with:
|
with:
|
||||||
toolchain: stable
|
toolchain: ${{ matrix.info.rust || 'stable' }}
|
||||||
target: ${{ matrix.info.target }}
|
target: ${{ matrix.info.target }}
|
||||||
|
|
||||||
# TODO: Could I use the previous jobs to skip this call?
|
# TODO: Could I use the previous jobs to skip this call?
|
||||||
|
Loading…
x
Reference in New Issue
Block a user