Skip to content

Commit

Permalink
Add targets for Linux and Windows ARM wheels (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-siegel authored Aug 16, 2024
1 parent 32283e4 commit 27e8df7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ jobs:
matrix:
include:
- os: macos-12
arch: x86_64
cibw-archs: x86_64
deployment-target: '10.9'
- os: macos-latest
arch: arm64
cibw-archs: arm64
deployment-target: '11.0'
- os: ubuntu-latest
arch: x86_64
cibw-archs: x86_64
deployment-target: ''
- os: ubuntu-arm64
cibw-archs: aarch64
deployment-target: ''
# - os: ubuntu-arm64
# arch: aarch64
# deployment-target: ''
- os: windows-2022
arch: AMD64
cibw-archs: 'AMD64 ARM64'
deployment-target: ''
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
if: ${{ !startsWith(matrix.os, 'ubuntu') }}
with:
python-version: '3.10'
python-version: '3.11'
- uses: actions/setup-python@v4
if: ${{ startsWith(matrix.os, 'ubuntu') }}
# for testing due to docker env issues
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
hashFiles('Makefile', 'pgbuild/Makefile', '.github/workflows/build-and-test.yml') }}
- name: Build wheels
env:
CIBW_ARCHS: ${{ matrix.arch }}
CIBW_ARCHS: ${{ matrix.cibw-archs }}
CIBW_SKIP: pp* cp313-* *-musllinux*
MACOSX_DEPLOYMENT_TARGET: ${{ matrix.deployment-target }}
run: python -m cibuildwheel --output-dir wheelhouse
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "pixeltable-pgserver"
version = "0.2.3"
version = "0.2.4"
description = "Embedded Postgres Server for Pixeltable"
readme = "README.md"
requires-python = ">=3.9"
Expand Down

0 comments on commit 27e8df7

Please sign in to comment.