Skip to content

Commit

Permalink
Revert "build: Add windows-aarch64 to python binaries (#19966)"
Browse files Browse the repository at this point in the history
This reverts commit 5e91e4c.
  • Loading branch information
ritchie46 authored Nov 25, 2024
1 parent dc94be7 commit 5e4e071
Showing 1 changed file with 3 additions and 13 deletions.
16 changes: 3 additions & 13 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,11 @@ jobs:
fail-fast: false
matrix:
package: [polars, polars-lts-cpu, polars-u64-idx]
os: [ubuntu-latest, macos-13, windows-latest, windows-arm64-16gb]
os: [ubuntu-latest, macos-13, windows-32gb-ram]
architecture: [x86-64, aarch64]
exclude:
- os: windows-latest
- os: windows-32gb-ram
architecture: aarch64
- os: windows-arm64-16gb
architecture: x86-64

env:
SED_INPLACE: ${{ matrix.os == 'macos-13' && '-i ''''' || '-i'}}
Expand Down Expand Up @@ -182,15 +180,7 @@ jobs:
if: matrix.architecture == 'aarch64'
id: target
run: |
TARGET=$(
if [[ "${{ matrix.os }}" == "macos-13" ]]; then
echo "aarch64-apple-darwin";
elif [[ "${{ matrix.os }}" == "windows-arm64-16gb" ]]; then
echo "aarch64-pc-windows-msvc";
else
echo "aarch64-unknown-linux-gnu";
fi
)
TARGET=${{ matrix.os == 'macos-13' && 'aarch64-apple-darwin' || 'aarch64-unknown-linux-gnu'}}
echo "target=$TARGET" >> $GITHUB_OUTPUT
- name: Set jemalloc for aarch64 Linux
Expand Down

0 comments on commit 5e4e071

Please sign in to comment.