-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Auto build script * Update workflows * Update scripts * Update scripts * Update scripts * Update script * update scripts * Update scripts * Update scripts * Update scripts * Update scripts * Update scripts * Update scripts * Update scripts * Update scripts * Install correct linux packages * Add -y * Change linux image * Change linux image * Change linux image for pypy as well * Cleanup * Skip musllinux, test python versions * Add back test suite * Update test runner * Rename, no fail fast * Cant build on new numpy version, ignore for now * Cleanup
- Loading branch information
Showing
6 changed files
with
87 additions
and
11 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Build | ||
|
||
on: [push] | ||
|
||
jobs: | ||
build_wheels: | ||
name: Build wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
# Window 64 bit | ||
- os: windows-latest | ||
platform_id: win_amd64 | ||
|
||
# Linux 64 bit | ||
- os: ubuntu-latest | ||
platform_id: manylinux_x86_64 | ||
manylinux_image: manylinux_2_28 | ||
|
||
# manylinux2014 dosen't work due to an issue in GLEW: | ||
# https://github.com/glfw/glfw/issues/2139 | ||
# manylinux_image: manylinux2014 | ||
|
||
# MacOS x86_64 | ||
- os: macos-12 | ||
platform_id: macosx_x86_64 | ||
|
||
# MacOS arm64 | ||
- os: macos-14 | ||
platform_id: macosx_arm64 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
|
||
# Used to host cibuildwheel | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.8" | ||
|
||
- name: Install cibuildwheel | ||
run: python -m pip install cibuildwheel==2.19.0 | ||
|
||
# Build wheels | ||
- name: Build wheels | ||
run: python -m cibuildwheel --output-dir wheelhouse | ||
# to supply options, put them in 'env', like: | ||
# env: | ||
# CIBW_SOME_OPTION: value | ||
|
||
# Upload wheels | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | ||
path: ./wheelhouse/*.whl |
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[pytest] | ||
markers = | ||
lite: mark as part of the lite test suite |