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 51f8299 commit 82ea9b7Copy full SHA for 82ea9b7
.github/workflows/release.yml
@@ -38,9 +38,11 @@ jobs:
38
- uses: actions/checkout@v4
39
40
- name: Install Rust
41
- uses: dtolnay/rust-action@stable
+ uses: actions-rs/toolchain@v1
42
with:
43
- targets: ${{ matrix.target }}
+ toolchain: stable
44
+ target: ${{ matrix.target }}
45
+ override: true
46
47
- name: Install cross-compilation tools
48
if: matrix.target == 'aarch64-unknown-linux-gnu'
@@ -49,6 +51,8 @@ jobs:
49
51
sudo apt-get install -y gcc-aarch64-linux-gnu
50
52
53
- name: Build
54
+ env:
55
+ CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: aarch64-linux-gnu-gcc
56
run: cargo build --release --target ${{ matrix.target }}
57
58
- name: Package (Unix)
0 commit comments