Skip to content

Commit

Permalink
Bring back QEMU
Browse files Browse the repository at this point in the history
  • Loading branch information
ddelange committed Sep 26, 2024
1 parent ef10f48 commit e045a9d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ jobs:
run: |
MATRIX_INCLUDE=$(
{
cibuildwheel --print-build-identifiers --platform linux --arch x86_64 | jq -nRc '{"only": inputs, "os": "ubuntu-22.04"}' \
&& cibuildwheel --print-build-identifiers --platform linux --arch aarch64 | jq -nRc '{"only": inputs, "os": "ubuntu-22.04-arm64"}' \
cibuildwheel --print-build-identifiers --platform linux --arch x86_64,aarch64 | jq -nRc '{"only": inputs, "os": "ubuntu-22.04"}' \
&& cibuildwheel --print-build-identifiers --platform macos --arch x86_64 | jq -nRc '{"only": inputs, "os": "macos-13"}' \
&& cibuildwheel --print-build-identifiers --platform macos --arch arm64 | jq -nRc '{"only": inputs, "os": "macos-14"}' \
&& cibuildwheel --print-build-identifiers --platform windows --arch AMD64 | jq -nRc '{"only": inputs, "os": "windows-2022"}'
Expand Down Expand Up @@ -88,6 +87,10 @@ jobs:
mkdir packages/vaex-core/bin
cp bin/install_pcre.sh packages/vaex-core/bin/
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v3

# xcode 15.2 throws compilation errors ref https:/vaexio/vaex/pull/2432
# select older xcode from the available versions on the runner ref https:/actions/runner-images/blob/ff9acc6/images/macos/macos-13-Readme.md#xcode
- name: Switch to older Xcode (Mac-only)
Expand Down

0 comments on commit e045a9d

Please sign in to comment.