summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Rouvreau <vincent.rouvreau@inria.fr>2022-12-13 12:04:56 +0100
committerVincent Rouvreau <vincent.rouvreau@inria.fr>2022-12-13 12:04:56 +0100
commit2a4b1d97119908303bc02a178767a604203360d3 (patch)
tree52a18042148c60bbc9d0863f1ec14dee9acf6a3f
parente91aa1b8b6f34a67febe38688aa2b25baa4735d1 (diff)
Upload build wheel as artifacts
-rw-r--r--.github/workflows/pip-build-linux.yml5
-rw-r--r--.github/workflows/pip-build-osx.yml5
-rw-r--r--.github/workflows/pip-build-windows.yml5
3 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/pip-build-linux.yml b/.github/workflows/pip-build-linux.yml
index bc4f999e..11968e97 100644
--- a/.github/workflows/pip-build-linux.yml
+++ b/.github/workflows/pip-build-linux.yml
@@ -25,3 +25,8 @@ jobs:
$PYTHON311/bin/python -m pip install --user pytest build_311/src/python/dist/*.whl
$PYTHON311/bin/python -c "import gudhi; print(gudhi.__version__)"
$PYTHON311/bin/python -m pytest src/python/test/test_alpha_complex.py
+ - name: Upload linux python wheel
+ uses: actions/upload-artifact@v3
+ with:
+ name: linux python wheel
+ path: build_311/src/python/dist/*.whl
diff --git a/.github/workflows/pip-build-osx.yml b/.github/workflows/pip-build-osx.yml
index a438124a..573b9766 100644
--- a/.github/workflows/pip-build-osx.yml
+++ b/.github/workflows/pip-build-osx.yml
@@ -49,3 +49,8 @@ jobs:
python -m pip install --user pytest build/src/python/dist/*.whl
python -c "import gudhi; print(gudhi.__version__)"
python -m pytest src/python/test/test_alpha_complex.py
+ - name: Upload OSx python wheel
+ uses: actions/upload-artifact@v3
+ with:
+ name: osx python wheel
+ path: build/src/python/dist/*.whl
diff --git a/.github/workflows/pip-build-windows.yml b/.github/workflows/pip-build-windows.yml
index 50bdfe2c..9d9026c5 100644
--- a/.github/workflows/pip-build-windows.yml
+++ b/.github/workflows/pip-build-windows.yml
@@ -47,3 +47,8 @@ jobs:
python -m pip install --user pytest
python -c "import gudhi; print(gudhi.__version__)"
python -m pytest ".\src\python\test\test_alpha_complex.py"
+ - name: Upload Windows python wheel
+ uses: actions/upload-artifact@v3
+ with:
+ name: windows python wheel
+ path: build/src/python/dist/*.whl