summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-31 09:23:14 +0200
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-05-31 09:23:14 +0200
commit974a045acfdae6a9980d9473f9dc3ece716aa0e1 (patch)
tree8b4b154b61d8ab1310f43c4882b57a7bd8ec669a /.github/workflows
parentc4c2e870662528467ef130b3e6a9f76682a86fd1 (diff)
Add some fields for PyPi nice render
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/pip-packaging-osx.yml2
-rw-r--r--.github/workflows/pip-packaging-windows.yml4
2 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/pip-packaging-osx.yml b/.github/workflows/pip-packaging-osx.yml
index 28dd1d53..f30b89d8 100644
--- a/.github/workflows/pip-packaging-osx.yml
+++ b/.github/workflows/pip-packaging-osx.yml
@@ -36,11 +36,9 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=Release -DPython_ADDITIONAL_VERSIONS=3 ..
cd src/python
python setup.py bdist_wheel
- pwd
- name: Publish on PyPi
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
- pwd
python -m twine upload --repository-url https://test.pypi.org/legacy/ build/src/python/dist/* \ No newline at end of file
diff --git a/.github/workflows/pip-packaging-windows.yml b/.github/workflows/pip-packaging-windows.yml
index 33ba0de9..687d62a9 100644
--- a/.github/workflows/pip-packaging-windows.yml
+++ b/.github/workflows/pip-packaging-windows.yml
@@ -25,7 +25,7 @@ jobs:
architecture: x64
- name: Install dependencies
run: |
- vcpkg install tbb:x64-windows boost-serialization:x64-windows boost-date-time:x64-windows boost-system:x64-windows boost-filesystem:x64-windows boost-units:x64-windows boost-thread:x64-windows boost-program-options:x64-windows eigen3:x64-windows mpfr:x64-windows mpir:x64-windows cgal:x64-windows
+ vcpkg install tbb:x64-windows boost-graph:x64-windows boost-serialization:x64-windows boost-date-time:x64-windows boost-system:x64-windows boost-filesystem:x64-windows boost-units:x64-windows boost-thread:x64-windows boost-program-options:x64-windows eigen3:x64-windows mpfr:x64-windows mpir:x64-windows cgal:x64-windows
python -m pip install --user -r .github/build-requirements.txt
python -m pip install --user twine
- name: Build python wheel
@@ -40,4 +40,4 @@ jobs:
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
- run: python -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* \ No newline at end of file
+ run: python -m twine upload --repository-url https://test.pypi.org/legacy/ build/src/python/dist/* \ No newline at end of file