-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from RuhiRG/relFixes
CI: Fix for musllinux
- Loading branch information
Showing
11 changed files
with
50 additions
and
192 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 |
---|---|---|
|
@@ -45,21 +45,32 @@ jobs: | |
runs-on: ${{ matrix.os }} | ||
env: # Boost needs 13.0 | ||
MACOSX_DEPLOYMENT_TARGET: '13.0' | ||
CIBW_BEFORE_ALL: "scripts/cibw_before_build.sh" | ||
CIBW_BEFORE_ALL_LINUX: "scripts/cibw_before_build.sh" | ||
CIBW_BEFORE_ALL_MACOS: "scripts/cibw_before_build.sh" | ||
strategy: | ||
# Ensure that a wheel builder finishes even if another fails | ||
fail-fast: false | ||
matrix: | ||
# macos-13 is an intel runner, macos-14 is apple silicon | ||
# TODO(ruhila) : windows-2022 | ||
# TODO: windows-2022 | ||
os: [ubuntu-24.04, macos-13, macos-14] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
# From https://github.com/pypa/cibuildwheel/discussions/989 | ||
- name: Install boost | ||
if: ${{ runner.os == 'Windows' }} | ||
uses: MarkusJx/[email protected] | ||
id: install-boost | ||
with: | ||
boost_version: 1.83.0 | ||
link: static | ||
- name: Echo build platform | ||
run: echo Building wheels for ${{ matrix.os }} | ||
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_ENVIRONMENT_WINDOWS: BOOST_ROOT='${{ steps.install-boost.outputs.BOOST_ROOT }}' | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
path: ./wheelhouse/*.whl | ||
|
@@ -79,9 +90,6 @@ jobs: | |
- name: Build sdist | ||
shell: bash -l {0} | ||
run: | | ||
pipx install meson | ||
meson wrap install fmt | ||
meson wrap install eigen | ||
pipx run build --sdist | ||
- uses: actions/upload-artifact@v3 | ||
|
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 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 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 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[project] | ||
name = "pydseamslib" | ||
version = "0.0.1" | ||
version = "0.0.2" | ||
description = "Python bindings for seams-core" | ||
authors = [ | ||
{name = "Amrita Goswami", email = "[email protected]"}, | ||
|
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
Oops, something went wrong.