Skip to content

New record types and new injector inheritance #211

New record types and new injector inheritance

New record types and new injector inheritance #211

Workflow file for this run

name: Build
on: [pull_request]
jobs:
build_wheels_linux:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04]
arch: [x86_64, i686, aarch64, ppc64le, s390x]
steps:
- name: Checkout LeptonInjector
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9' # update once build dependencies are available
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl
build_wheels_macos:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-11]
# arch: [x86_64, arm64]
arch: [x86_64]
steps:
- name: Checkout LeptonInjector
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.9' # update once build dependencies are available
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
- name: Setup tmate session
if: ${{ failure() }}
uses: mxschmitt/action-tmate@v3
- uses: actions/upload-artifact@v4
with:
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
path: ./wheelhouse/*.whl