Skip to content

Commit

Permalink
chore: add a build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorias committed Oct 9, 2023
1 parent 78b24a4 commit 5039581
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Build
on: workflow_dispatch
env:
# cibuildwheel on linux runs in a container.
# Codec2 is required for the build process, so instruct cibuildwheel to install it.
CIBW_BEFORE_ALL_LINUX: yum install -y codec2-devel
# Don't support x86, because I had problems getting a successful build.
CIBW_ARCHS_LINUX: x86_64
# Don't support musllinux, because Alpine Linux doesn't have codec2.
# I would have to add manual installation instructions for it in
# CIBW_BEFORE_ALL. Unless someone complains, it's not worth it.
#
# Don't support pp10, because I couldn't get it to build. Numpy
# complains about missing BLAS.
CIBW_SKIP: "*musllinux* pp310*"
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
# Supported runners: https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners/about-github-hosted-runners#supported-runners-and-hardware-resources
# Not supporting Windows, because there's no codec2 package for Windows' package manager.
os: [ubuntu-22.04, macOS-13]

steps:
- uses: actions/checkout@v4

# Used to host cibuildwheel
# https://github.com/actions/setup-python
- uses: actions/setup-python@v4
with:
python-version: "3.12"

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

- name: Install codec2 on macOS
if: matrix.os == 'macOS-13'
run: |
brew update
brew install codec2
- name: Build wheels
run: python -m cibuildwheel --output-dir wheelhouse

- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl
7 changes: 7 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ classifiers=[
'Development Status :: 5 - Production/Stable',
]

# Necessary for cibuildwheel not to use an old python that may have old
# libraries. E.g., python 3.6 does not have numpy 1.26.
# https://cibuildwheel.readthedocs.io/en/stable/options/#requires-python
#
# Using at least Python 3.9, because as of 2023-09, 3.8 is outdated.
requires-python = ">=3.9"

# Use-time dependencies.
dependencies = [
# The package will error out on import if these are not installed.
Expand Down

0 comments on commit 5039581

Please sign in to comment.