mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2025-01-22 04:25:21 +00:00
.github: Fix Rust version for release to 1.58
Unfortunately Rust 1.59 produces binaries that segfault when compiled with musl-gcc wrappers. Which is exactly how we produce out aarch64 and musl binaries for the release. See: https://github.com/rust-lang/rust/issues/95926 Signed-off-by: Rob Bradford <robert.bradford@intel.com>
This commit is contained in:
parent
85c068f769
commit
6a099257e8
6
.github/workflows/release.yaml
vendored
6
.github/workflows/release.yaml
vendored
@ -16,12 +16,12 @@ jobs:
|
||||
- name: Install Rust toolchain (x86_64-unknown-linux-gnu)
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
toolchain: 1.58
|
||||
target: x86_64-unknown-linux-gnu
|
||||
- name: Install Rust toolchain (x86_64-unknown-linux-musl)
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
toolchain: 1.58
|
||||
target: x86_64-unknown-linux-musl
|
||||
- name: Build
|
||||
run: cargo build --all --release --target=x86_64-unknown-linux-gnu
|
||||
@ -32,7 +32,7 @@ jobs:
|
||||
- name: Install Rust toolchain (aarch64-unknown-linux-musl)
|
||||
uses: actions-rs/toolchain@v1
|
||||
with:
|
||||
toolchain: stable
|
||||
toolchain: 1.58
|
||||
target: aarch64-unknown-linux-musl
|
||||
override: true
|
||||
- name: Static Build (AArch64)
|
||||
|
Loading…
x
Reference in New Issue
Block a user