This is an automated email from the ASF dual-hosted git repository.
hgruszecki pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iggy.git
The following commit(s) were added to refs/heads/master by this push:
new 61558450a fix(ci): use correct macos runner for building python wheels
(#2464)
61558450a is described below
commit 61558450af2ddef586045c7563d7dd714cef3cc5
Author: Hubert Gruszecki <[email protected]>
AuthorDate: Tue Dec 9 12:47:23 2025 +0100
fix(ci): use correct macos runner for building python wheels (#2464)
---
.github/workflows/_build_python_wheels.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/_build_python_wheels.yml
b/.github/workflows/_build_python_wheels.yml
index 583928a43..7b2b674c7 100644
--- a/.github/workflows/_build_python_wheels.yml
+++ b/.github/workflows/_build_python_wheels.yml
@@ -115,7 +115,7 @@ jobs:
retention-days: 7
macos:
- runs-on: ${{ matrix.target == 'x86_64' && 'macos-15-large' || 'macos-14' }}
+ runs-on: ${{ matrix.target == 'x86_64' && 'macos-15-intel' || 'macos-15' }}
strategy:
matrix:
target: [x86_64, aarch64]