Skip to content

Commit 761f316

Browse files
committed
fix: lock nightly rust version to 2025-02-19
1 parent 601664b commit 761f316

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,16 @@ jobs:
5454

5555
- name: Install Rust
5656
run: |
57-
rustup toolchain install nightly
58-
rustup default nightly
57+
# https://github.com/rust-cross/cargo-zigbuild/issues/327
58+
rustup toolchain install nightly-2025-02-19
59+
rustup default nightly-2025-02-19
5960
rustup target add ${{ matrix.target }}
6061
6162
- name: Build for Linux
6263
if: contains(matrix.os, 'ubuntu')
6364
run: |
6465
cargo install cross --git https://github.com/cross-rs/cross
65-
# https://github.com/rust-cross/cargo-zigbuild/issues/327
66-
RUSTFLAGS="-Zlinker-features=-lld" cross build --release --target ${{ matrix.target }}
66+
cross build --release --target ${{ matrix.target }}
6767
mv "${{ matrix.artifact_name }}" "${{ matrix.target }}.so"
6868
6969
- name: Build for macOS

0 commit comments

Comments
 (0)