Skip to content

Commit

Permalink
Experiment with Windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
mwilliamson committed Nov 10, 2023
1 parent b345d2c commit bb5b947
Showing 1 changed file with 2 additions and 117 deletions.
119 changes: 2 additions & 117 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,8 @@ jobs:

strategy:
matrix:
os: [ubuntu-20.04, macos-11]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11", "3.12-dev", "pypy-3.7"]
use-system-libs: [false]
include:
- os: ubuntu-20.04
python-version: "3.11"
use-system-libs: true
os: [windows-2022]
python-version: ["3.12"]

steps:

Expand All @@ -30,113 +25,3 @@ jobs:
- run: "make jq.c"

- run: tox -e py
if: ${{ !matrix.use-system-libs }}

- run: |
# Remove deps to make sure they're not being used
rm -r deps
sudo apt-get install -y libjq-dev libonig-dev
JQPY_USE_SYSTEM_LIBS=1 tox -e py
if: ${{ matrix.use-system-libs }}
build_sdist:
name: Build source distribution
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- uses: actions/setup-python@v4
name: Use Python 3.11
with:
python-version: '3.11'

- run: make jq.c

- run: pip install build twine

- name: Build sdist
run: python -m build --sdist

- name: Check metadata
run: python -m twine check dist/*

- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

build_wheels_matrix:
name: Generate matrix for building wheels
runs-on: ubuntu-latest

outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}

steps:

- uses: actions/checkout@v3

- name: Use Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0

- id: set-matrix
env:
CIBW_ARCHS_LINUX: "auto aarch64"
CIBW_ARCHS_MACOS: "auto"
run: |
MATRIX=$(
{
cibuildwheel --print-build-identifiers --platform linux \
| sed 's/.*/{"cibw-only": "&", "os": "ubuntu-20.04"}/' \
&& cibuildwheel --print-build-identifiers --platform macos \
| sed 's/.*/{"cibw-only": "&", "os": "macos-11" }/'
} | jq --slurp --compact-output '{"include": .}'
)
echo matrix="$MATRIX" >> $GITHUB_OUTPUT
build_wheels:
name: Build ${{ matrix.cibw-only }} wheel

needs: build_wheels_matrix

strategy:
matrix: ${{ fromJson(needs.build_wheels_matrix.outputs.matrix) }}

runs-on: ${{ matrix.os }}

steps:

- uses: actions/checkout@v3

- name: Use Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'

- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v2
with:
platforms: all

- name: Print build identifiers
run: |
python -m pip install cibuildwheel==2.15.0
python -m cibuildwheel --only ${{ matrix.cibw-only }} --print-build-identifiers
- name: Build wheels
if: ${{ (github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')) || matrix.cibw-only == 'cp310-manylinux_x86_64' }}
uses: pypa/[email protected]
with:
only: ${{ matrix.cibw-only }}

- uses: actions/upload-artifact@v3
if: ${{ (github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')) || matrix.cibw-only == 'cp310-manylinux_x86_64' }}
with:
path: ./wheelhouse/*.whl

0 comments on commit bb5b947

Please sign in to comment.