Skip to content

Commit 61dc669

Browse files
authored
Revert "build: Add windows-aarch64 to python binaries" (#19985)
1 parent dc94be7 commit 61dc669

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

.github/workflows/release-python.yml

Lines changed: 3 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -92,13 +92,11 @@ jobs:
9292
fail-fast: false
9393
matrix:
9494
package: [polars, polars-lts-cpu, polars-u64-idx]
95-
os: [ubuntu-latest, macos-13, windows-latest, windows-arm64-16gb]
95+
os: [ubuntu-latest, macos-13, windows-32gb-ram]
9696
architecture: [x86-64, aarch64]
9797
exclude:
98-
- os: windows-latest
98+
- os: windows-32gb-ram
9999
architecture: aarch64
100-
- os: windows-arm64-16gb
101-
architecture: x86-64
102100

103101
env:
104102
SED_INPLACE: ${{ matrix.os == 'macos-13' && '-i ''''' || '-i'}}
@@ -182,15 +180,7 @@ jobs:
182180
if: matrix.architecture == 'aarch64'
183181
id: target
184182
run: |
185-
TARGET=$(
186-
if [[ "${{ matrix.os }}" == "macos-13" ]]; then
187-
echo "aarch64-apple-darwin";
188-
elif [[ "${{ matrix.os }}" == "windows-arm64-16gb" ]]; then
189-
echo "aarch64-pc-windows-msvc";
190-
else
191-
echo "aarch64-unknown-linux-gnu";
192-
fi
193-
)
183+
TARGET=${{ matrix.os == 'macos-13' && 'aarch64-apple-darwin' || 'aarch64-unknown-linux-gnu'}}
194184
echo "target=$TARGET" >> $GITHUB_OUTPUT
195185
196186
- name: Set jemalloc for aarch64 Linux

0 commit comments

Comments
 (0)