use setup() options to pass py_limited_api to bdist_wheel & bump cibu… #718
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Execute tests on *BSD platforms. Does not produce wheels. | |
# Useful URLs: | |
# https://github.com/vmactions/freebsd-vm | |
# https://github.com/vmactions/openbsd-vm | |
# https://github.com/vmactions/netbsd-vm | |
on: [push, pull_request] | |
name: bsd-tests | |
concurrency: | |
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) && github.sha || '' }} | |
cancel-in-progress: true | |
jobs: | |
freebsd: | |
# if: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
uses: vmactions/freebsd-vm@v1 | |
with: | |
usesh: true | |
run: | | |
PIP_BREAK_SYSTEM_PACKAGES=1 make install-sysdeps install-pydeps-test install print-sysinfo test test-memleaks | |
openbsd: | |
# if: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
uses: vmactions/openbsd-vm@v1 | |
with: | |
usesh: true | |
run: | | |
PIP_BREAK_SYSTEM_PACKAGES=1 make install-sysdeps install-pydeps-test install print-sysinfo test test-memleaks | |
netbsd: | |
# if: false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tests | |
uses: vmactions/netbsd-vm@v1 | |
with: | |
usesh: true | |
run: | | |
PIP_BREAK_SYSTEM_PACKAGES=1 make PYTHON=python3.11 install-sysdeps install-pydeps-test install print-sysinfo test test-memleaks |