We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6e54d41 + 6ee3f66 commit 9031582Copy full SHA for 9031582
.github/workflows/release.yaml
@@ -36,6 +36,7 @@ jobs:
36
- os: ubuntu-20.04
37
target: x86_64-unknown-linux-gnu
38
code-target: linux-x64
39
+ container: rockylinux:8
40
41
target: aarch64-unknown-linux-gnu
42
code-target: linux-arm64
@@ -62,6 +63,14 @@ jobs:
62
63
with:
64
fetch-depth: ${{ env.FETCH_DEPTH }}
65
66
+ - name: Install toolchain dependencies
67
+ if: matrix.container == 'rockylinux:8'
68
+ shell: bash
69
+ run: |
70
+ dnf install -y gcc
71
+ curl --proto '=https' --tlsv1.2 --retry 10 --retry-connrefused -fsSL "https://sh.rustup.rs" | sh -s -- --profile minimal --default-toolchain none -y
72
+ echo "${CARGO_HOME:-$HOME/.cargo}/bin" >> $GITHUB_PATH
73
+
74
- name: Install Rust toolchain
75
run: |
76
rustup update --no-self-update stable
0 commit comments