From c3c55b6d40f41571bc73edba11b417da20a42429 Mon Sep 17 00:00:00 2001 From: Stijn de Gooijer Date: Mon, 3 Jun 2024 09:14:46 +0200 Subject: [PATCH] Fix release workflow for latest MacOS runner --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f0e9b00..47ed807 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -154,7 +154,8 @@ jobs: manylinux: '2_28' - name: Test wheel - if: matrix.arch == 'x86_64' + # Only test wheels that match the runner architecture for now + if: (matrix.arch == 'x86_64' && matrix.os != 'macos-latest') || (matrix.arch == 'aarch' && matrix.os == 'macos-latest') run: | pip install dist/*.whl --force-reinstall polars --version