We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 156ace2 commit bb79738Copy full SHA for bb79738
1 file changed
.github/workflows/release.yml
@@ -23,8 +23,10 @@ jobs:
23
- name: Install Rust
24
if: runner.os != 'Linux'
25
run: |
26
- rustup update stable
+ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable --profile minimal
27
+ source $HOME/.cargo/env
28
rustup target add aarch64-apple-darwin x86_64-apple-darwin
29
+ rustup show
30
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
31
32
- name: Build wheels
@@ -41,7 +43,6 @@ jobs:
41
43
# Linux: Install Rust in the manylinux/musllinux container
42
44
CIBW_BEFORE_ALL_LINUX: "curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable --profile minimal"
45
CIBW_ENVIRONMENT_LINUX: 'PATH="$PATH:$HOME/.cargo/bin"'
- CIBW_ENVIRONMENT_MACOS: 'PATH="$PATH:$HOME/.cargo/bin"'
46
47
# Build backend verification
48
CIBW_BUILD_FRONTEND: build
0 commit comments