Fix '#define far' is performed in windows.h #2660
Workflow file for this run
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] | |
# Temporary workaround to allow node16 | |
env: | |
ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true | |
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.06.02 | |
steps: | |
# Should use actions/checkout@v4, but requires node20, not available for quay.io/pypa/manylinux2014_x86_64 | |
- uses: actions/checkout@v3 | |
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 | |
# Should use actions/upload-artifact@v4, but requires node20, not available for quay.io/pypa/manylinux2014_x86_64 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: linux python wheel | |
path: build_39/src/python/wheelhouse/*.whl |