Skip to content

Commit

Permalink
consolidate CIBW_BEFORE_ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
MusicalNinjaDad committed May 8, 2024
1 parent 2fc1e5b commit 9ad93ef
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,8 @@ jobs:
uses: pypa/[email protected]
env:
# CIBW_CONFIG_SETTINGS: "--build-option=--py-limited-api=cp38" # speeds up process at cost of less specific wheels
CIBW_BEFORE_ALL_LINUX: "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal"
CIBW_BEFORE_ALL_MACOS: "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal"
CIBW_BEFORE_ALL_WINDOWS: "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --target i686-pc-windows-gnu --profile minimal"
CIBW_BEFORE_ALL: "curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal"
CIBW_BEFORE_ALL_WINDOWS: "rustup add target i686-pc-windows-gnu"
CIBW_ENVIRONMENT_LINUX: PATH="$HOME/.cargo/bin:$PATH" # other OS directly update environment from rustup.sh
CIBW_SKIP: "*-musllinux_i686" # No musllinux-i686 rust compiler available.
# with:
Expand Down

0 comments on commit 9ad93ef

Please sign in to comment.