-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Silvia Sellán <[email protected]>
- Loading branch information
Showing
25 changed files
with
3,440 additions
and
147 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,80 +31,38 @@ jobs: | |
path: dist/*.tar.gz | ||
|
||
build_wheels: | ||
|
||
# Only run if the commit message contains '[ci build]' OR always run if it's a tag | ||
# This will not respect the tag if it appears in a pull request commit message. Those builds always show up as 'synchronize' events, and there is no easy way to get the corresponding commit messages. We instead pull the PR title to check for tags. | ||
# More info here: https://github.community/t/accessing-commit-message-in-pull-request-event/17158/13 | ||
# if: "contains(toJSON(github.event.commits.*.message), '[ci build]') || contains(toJSON(github.event.pull_request.title), '[ci build]') || contains(github.ref, 'refs/tags')" | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# Launch separate job for each python. The build is so much longer than | ||
# machine configuration/setup, so parallel builds will be faster. More | ||
# importantly, github times out after 6 hours _per job_. | ||
|
||
# debugging | ||
# cpversion: [ "cp39"] | ||
# os: [ { runs-on: ubuntu-latest, cibw-arch: manylinux_x86_64}] | ||
cpversion: ["cp36", "cp37", "cp38", "cp39", "cp310", "cp311", "cp312"] | ||
os: [ { runs-on: ubuntu-latest, cibw-arch: manylinux_x86_64}, { runs-on: macos-latest, cibw-arch: macosx_x86_64}, { runs-on: macos-latest, cibw-arch: macosx_arm64}, { runs-on: windows-latest, cibw-arch: win_amd64} ] | ||
# cpversion: ["cp36"] | ||
# os: [ { runs-on: windows-latest, cibw-arch: win_amd64}] | ||
exclude: | ||
- os: { runs-on: macos-latest, cibw-arch: macosx_arm64} | ||
cpversion: "cp36" | ||
- os: { runs-on: macos-latest, cibw-arch: macosx_arm64} | ||
cpversion: "cp37" | ||
|
||
|
||
|
||
name: Build wheels ${{ matrix.cpversion }}-${{ matrix.os.cibw-arch }} | ||
runs-on: ${{ matrix.os.runs-on }} | ||
|
||
|
||
env: | ||
CIBW_BUILD_VERBOSITY: 3 | ||
# This is very dubious... It *may* work because these are just cpp libraries that should not depend on the python version. Still, super-dubious. | ||
# CIBW_BEFORE_BUILD_WINDOWS: "python -m pip install delvewheel; $rootPath = Join-Path -Path (Get-Location) -ChildPath 'build'; $folders = Get-ChildItem -Path $rootPath -Recurse -Directory; foreach ($folder in $folders) { $env:Path += \";$($folder.FullName)\" }" | ||
|
||
# CIBW_BEFORE_BUILD_WINDOWS: | | ||
# python .github/workflows/update-path.py | ||
# python -m pip install delvewheel | ||
# CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: | | ||
# python .github/workflows/update-path.py | ||
# python -m delvewheel repair --no-mangle-all -w {dest_dir} {wheel} | ||
# CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "python -m delvewheel repair --no-mangle-all --add-path build\\temp.win-amd64-3.6\\Release;build\\temp.win-amd64-3.6\\Release\\Release;build\\temp.win-amd64-3.6\\Release\\_deps\\gmp-src\\lib;build\\temp.win-amd64-3.6\\Release\\_deps\\mpfr-src\\lib -w {dest_dir} {wheel} " | ||
# CIBW_TEST_COMMAND_WINDOWS: "python -m pip install tetgen && cd /d {project} && python -m unittest -v" | ||
# CIBW_TEST_COMMAND_MACOS: "python -m pip install tetgen && cd {project} && python -m unittest -v" | ||
# CIBW_TEST_COMMAND_LINUX: "python -m pip install tetgen && cd {project} && python -m unittest -v" | ||
# CIBW_TEST_COMMAND: "python -m pip install tetgen && python -m unittest -v" | ||
# CIBW_BEFORE_BUILD_LINUX : "yum remove -y cmake && python -m pip install\ cmake && yum -y install gmp-devel\ mpfr-devel && python -m pip install numpy" | ||
CIBW_BEFORE_BUILD_LINUX: "yum install -y libXrandr libXrandr-devel libXinerama libXinerama-devel libXcursor libXcursor-devel libXi libXi-devel && python -m pip install auditwheel-symbols" | ||
# CIBW_REPAIR_WHEEL_COMMAND_LINUX: "auditwheel-symbols --manylinux 2_28 {wheel} && auditwheel repair --plat manylinux_2_28_x86_64 -w {dest_dir} {wheel}" | ||
CIBW_REPAIR_WHEEL_COMMAND_LINUX: "auditwheel repair --plat manylinux_2_28_x86_64 -w {dest_dir} {wheel}" | ||
CIBW_MANYLINUX_X86_64_IMAGE: 'manylinux_2_28' | ||
# # CIBW_BEFORE_BUILD_LINUX: "dnf install -y libXrandr libXrandr-devel libXinerama libXinerama-devel libXcursor libXcursor-devel libXi libXi-devel" | ||
# # CIBW_BEFORE_BUILD_LINUX: "apt-get update && apt-get install -y libxrandr2 libxrandr-dev libxinerama1 libxinerama-dev libxcursor1 libxcursor-dev libxi6 libxi-dev" | ||
# CIBW_BEFORE_BUILD_LINUX: "sed -i 's|http://deb.debian.org/debian|https://archive.debian.org/debian|g' /etc/apt/sources.list && sed -i 's|http://security.debian.org/debian-security|https://archive.debian.org/debian-security|g' /etc/apt/sources.list && apt-get update && apt-get install -y libxrandr2 libxrandr-dev libxinerama1 libxinerama-dev libxcursor1 libxcursor-dev libxi6 libxi-dev" | ||
|
||
# CIBW_MANYLINUX_X86_64_IMAGE: quay.io/pypa/manylinux_2_28_x86_64:latest | ||
# CIBW_MANYLINUX_X86_64_IMAGE: "quay.io/pypa/manylinux_2_28_x86_64:latest" | ||
# CIBW_MANYLINUX_I686_IMAGE: quay.io/pypa/manylinux_2_28_i686:latest | ||
CIBW_BUILD: "${{ matrix.cpversion }}-${{ matrix.os.cibw-arch }}" | ||
# CIBW_TEST_SKIP: "*-macosx_arm64" | ||
CIBW_ENVIRONMENT: "MAX_JOBS=2" | ||
# Why universal2 here? It's not included above in CIBW_BUILD | ||
CIBW_ARCHS_MACOS: "x86_64 arm64 universal2" | ||
CIBW_ENVIRONMENT_MACOS: "CMAKE_OSX_ARCHITECTURES=\"${{ matrix.os.cibw-arch == 'macosx_x86_64' && 'x86_64' || matrix.os.cibw-arch == 'macosx_arm64' && 'arm64' || matrix.os.cibw-arch == 'macosx_universal2' && 'arm64;x86_64' || '' }}\"" | ||
MACOSX_DEPLOYMENT_TARGET: 10.16 | ||
# CIBW_PRERELEASE_PYTHONS: True | ||
|
||
|
||
# env: | ||
# CIBW_BUILD: "${{ matrix.cpversion }}-${{ matrix.os.cibw-arch }}" | ||
# # CIBW_BUILD: cp37-* | ||
# CIBW_BUILD_VERBOSITY: 3 | ||
# CIBW_ENVIRONMENT: "MAX_JOBS=2" | ||
# CIBW_BEFORE_BUILD_LINUX : "yum remove -y cmake && python -m pip install\ cmake && yum -y install gmp-devel\ mpfr-devel && python -m pip install numpy" | ||
# # CIBW_BEFORE_BUILD_MACOS: "python -m pip install cython numpy" | ||
# CIBW_BEFORE_BUILD_MACOS: "python -m pip install numpy" | ||
# CIBW_BEFORE_BUILD_WINDOWS: "python -m pip install numpy && python -m pip install delvewheel" | ||
# # This is very dubious... It *may* work because these are just cpp libraries that should not depend on the python version. Still, super-dubious. | ||
# CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "python -m delvewheel repair --no-mangle-all --add-path build\\temp.win-amd64-3.6\\Release;build\\temp.win-amd64-3.6\\Release\\Release;build\\temp.win-amd64-3.6\\Release\\_deps\\gmp-src\\lib;build\\temp.win-amd64-3.6\\Release\\_deps\\mpfr-src\\lib -w {dest_dir} {wheel} " | ||
# # CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "cd C: && cmd //c tree //F" | ||
# # CIBW_SKIP: "*-win32 *-manylinux_i686 pp*" | ||
# MACOSX_DEPLOYMENT_TARGET: 10.15 | ||
|
||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
@@ -114,94 +72,9 @@ jobs: | |
- name: Build wheels | ||
uses: pypa/[email protected] | ||
|
||
|
||
# - uses: actions/setup-python@v4 | ||
# name: Install Python | ||
# with: | ||
# python-version: '3.7' | ||
|
||
# - name: Install cibuildwheel | ||
# run: | | ||
# python -m pip install --upgrade pip | ||
# python -m pip install cibuildwheel==2.16 | ||
|
||
# - name: Add build subdirectories to PATH | ||
# shell: pwsh | ||
# if: runner.os == 'Windows' | ||
# run: | | ||
# $folder = "build" | ||
# Get-ChildItem -Path $folder -Directory -Recurse | ForEach-Object { | ||
# $env:Path += ";$($_.FullName)" | ||
# } | ||
|
||
|
||
# - name: Test | ||
# run: | | ||
# python -m pip install . | ||
|
||
# - name: Configure cibuildwheel | ||
# shell: bash | ||
# run: | | ||
# CMAKE_ARCH="${{ matrix.cibw-arch == 'win32' && '-A Win32' || '' }}" | ||
# CMAKE_OSX_ARCHITECTURES=${{ matrix.cibw-arch == 'macosx_x86_64' && 'x86_64' || matrix.cibw-arch == 'macosx_arm64' && 'arm64' || matrix.cibw-arch == 'macosx_universal2' && '"arm64;x86_64"' || '' }} | ||
# echo "CIBW_ARCHS_MACOS=x86_64 arm64 universal2" >> $GITHUB_ENV | ||
# echo "CIBW_BUILD=${{ matrix.cpversion }}-${{ matrix.cibw-arch }}" >> $GITHUB_ENV | ||
# echo "CIBW_ENVIRONMENT_MACOS=CMAKE_OSX_ARCHITECTURES=\"$CMAKE_OSX_ARCHITECTURES\"" >> $GITHUB_ENV | ||
|
||
# This shouldn't be necessary | ||
# - name: Install dependencies (Ubuntu) | ||
# shell: bash -l {0} | ||
# if: runner.os == 'Linux' | ||
# run: | | ||
# sudo apt-get update | ||
# sudo apt-get upgrade | ||
# sudo apt-get install \ | ||
# libmpfr-dev \ | ||
# libgmp-dev \ | ||
|
||
# - name: Package source distribution | ||
# if: runner.os == 'Linux' | ||
# run: | | ||
# python setup.py sdist -d wheelhouse --formats=gztar | ||
|
||
# - name: Build wheels | ||
# run: | | ||
# python -m cibuildwheel --output-dir wheelhouse | ||
|
||
|
||
# - name: Fix Windows wheels | ||
# run: | | ||
# python -m pip install delvewheel | ||
# cd wheelhouse | ||
# ls | ||
# delvewheel repair *.whl | ||
# python -m delvewheel repair *.whl | ||
|
||
# Upload binaries to github | ||
- uses: actions/upload-artifact@v3 | ||
with: | ||
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} | ||
path: | | ||
./wheelhouse/*.whl | ||
./wheelhouse/*.tar.gz | ||
# # Push the resulting binaries to pypi on a tag starting with 'v' | ||
# upload_pypi: | ||
# needs: [build_wheels] | ||
# runs-on: ubuntu-latest | ||
# # upload to PyPI on every tag starting with 'v' | ||
# # if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | ||
# # alternatively, to publish when a GitHub Release is created, use the following rule: | ||
# if: github.event_name == 'release' && github.event.action == 'published' | ||
# steps: | ||
# - uses: actions/download-artifact@v3 | ||
# with: | ||
# name: artifact | ||
# path: dist | ||
|
||
# - uses: pypa/[email protected] | ||
# with: | ||
# user: __token__ | ||
# password: ${{ secrets.pypi_password }} | ||
# skip_existing: true | ||
# # To test: repository_url: https://test.pypi.org/legacy/ | ||
./wheelhouse/*.tar.gz |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
if(TARGET glfw3webgpu) | ||
return() | ||
endif() | ||
|
||
include(FetchContent) | ||
FetchContent_Declare( | ||
glfw3webgpu | ||
GIT_REPOSITORY https://github.com/eliemichel/glfw3webgpu.git | ||
GIT_TAG e4cd9131c7472b000641a104116c2fecf13d55a7 | ||
) | ||
FetchContent_MakeAvailable(glfw3webgpu) |
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,11 @@ | ||
if(TARGET nanoflann) | ||
return() | ||
endif() | ||
|
||
include(FetchContent) | ||
FetchContent_Declare( | ||
nanoflann | ||
GIT_REPOSITORY https://github.com/jlblancoc/nanoflann.git | ||
GIT_TAG e0a985204e999a2caed0fdbb71ee8c556621a4f3 | ||
) | ||
FetchContent_MakeAvailable(nanoflann) |
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,11 @@ | ||
if(TARGET webgpu) | ||
return() | ||
endif() | ||
|
||
include(FetchContent) | ||
FetchContent_Declare( | ||
webgpu | ||
GIT_REPOSITORY https://github.com/eliemichel/WebGPU-distribution.git | ||
GIT_TAG 9dd47f8515dfd7112b750da07e719460a88bf2e8 | ||
) | ||
FetchContent_MakeAvailable(webgpu) |
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.