Merge pull request #1161 from VincentRouvreau/fix_pip_ci #2748
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
name: pip build linux | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: build pip wheel | |
runs-on: ubuntu-latest | |
# cf. https://github.com/GUDHI/gudhi-deploy/blob/main/Dockerfile_for_pip | |
container: gudhi/pip_for_gudhi:2024.12.02 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build wheel for Python 3.9 | |
run: | | |
mkdir build_39 | |
cd build_39 | |
cmake -DCMAKE_BUILD_TYPE=Release -DPython_EXECUTABLE=$PYTHON39/bin/python .. | |
cd src/python | |
$PYTHON39/bin/python -m build -n -w | |
auditwheel repair dist/*.whl | |
# NumPy 2.X is installed and guarantees ABI compatibility, test it with the minimal numpy version for python version | |
- name: Install and test wheel for Python 3.9 | |
run: | | |
$PYTHON39/bin/python -m pip install --user pytest build_39/src/python/dist/*.whl | |
$PYTHON39/bin/python -m pip install numpy~=1.19.3 | |
$PYTHON39/bin/python -c "import gudhi; print(gudhi.__version__)" | |
$PYTHON39/bin/python -m pytest -v src/python/test/test_alpha_complex.py | |
$PYTHON39/bin/python -m pytest -v src/python/test/test_delaunay_complex.py | |
$PYTHON39/bin/python -m pytest -v src/python/test/test_bottleneck_distance.py | |
$PYTHON39/bin/python -m pytest -v src/python/test/test_cubical_complex.py | |
$PYTHON39/bin/python -m pytest -v src/python/test/test_rips_complex.py | |
- name: Upload linux python wheel | |
uses: actions/upload-artifact@v4 | |
with: | |
name: linux python wheel | |
path: build_39/src/python/wheelhouse/*.whl |