We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d9b61b3 + 4b5126e commit a6e7f07Copy full SHA for a6e7f07
src/tools/rust-analyzer/.github/workflows/release.yaml
@@ -36,7 +36,9 @@ jobs:
36
code-target: win32-arm64
37
- os: ubuntu-latest
38
target: x86_64-unknown-linux-gnu
39
- zig_target: x86_64-unknown-linux-gnu.2.28
+ # Use a container with glibc 2.28
40
+ # Zig is not used because it doesn't work with PGO
41
+ container: quay.io/pypa/manylinux_2_28_x86_64
42
code-target: linux-x64
43
44
target: aarch64-unknown-linux-gnu
@@ -71,6 +73,12 @@ jobs:
71
73
with:
72
74
node-version: 22
75
76
+ - name: Install rustup
77
+ if: ${{ matrix.container }}
78
+ run: |
79
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal
80
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
81
+
82
- name: Install Rust toolchain
83
run: |
84
rustup update --no-self-update stable
0 commit comments