1
0
forked from GitHub/gf-core

copy mac build instructions to see if they also work for windows

This commit is contained in:
Herbert Lange
2025-08-25 15:48:11 +02:00
parent 0f4d13dd20
commit 837e691643

View File

@@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: true
matrix:
os: [ubuntu-latest, macos-latest, macos-13]
os: [ubuntu-latest, macos-latest, macos-13, windows-latest]
steps:
- uses: actions/checkout@v4
@@ -47,6 +47,13 @@ jobs:
run: |
python -m cibuildwheel src/runtime/python --output-dir wheelhouse
- name: Build wheels on OSX
if: startsWith(matrix.os, 'windows')
env:
CIBW_BEFORE_BUILD: cd src/runtime/c && glibtoolize && autoreconf -i && ./configure && make && sudo make install
run: |
python -m cibuildwheel src/runtime/python --output-dir wheelhouse
- uses: actions/upload-artifact@v4
with:
name: wheel-${{ matrix.os }}