Skip to content
Snippets Groups Projects

Pybind update

Merged Jan Möbius requested to merge pybind_update into master
Files
2
+ 9
56
@@ -35,7 +35,7 @@ build-3.9-linux:
@@ -35,7 +35,7 @@ build-3.9-linux:
paths:
paths:
- dist3/
- dist3/
build-3.5-macos:
build-3.9-macos:
stage:
stage:
build
build
tags:
tags:
@@ -44,7 +44,7 @@ build-3.5-macos:
@@ -44,7 +44,7 @@ build-3.5-macos:
GIT_SUBMODULE_STRATEGY: recursive
GIT_SUBMODULE_STRATEGY: recursive
script:
script:
- export PATH=/opt/local/bin:$PATH
- export PATH=/opt/local/bin:$PATH
- virtualenv -p python3.5 .
- virtualenv -p python3.9 .
- source bin/activate
- source bin/activate
- python setup.py bdist_wheel --dist-dir dist3
- python setup.py bdist_wheel --dist-dir dist3
artifacts:
artifacts:
@@ -67,22 +67,6 @@ build-3.9-macos-m1:
@@ -67,22 +67,6 @@ build-3.9-macos-m1:
paths:
paths:
- dist3/
- dist3/
build-2.7-macos:
stage:
build
tags:
- Apple
variables:
GIT_SUBMODULE_STRATEGY: recursive
script:
- export PATH=/opt/local/bin:$PATH
- virtualenv -p python2.7 .
- source bin/activate
- python setup.py bdist_wheel --dist-dir dist2
artifacts:
paths:
- dist2/
test-3.9-VS2017:
test-3.9-VS2017:
stage:
stage:
test
test
@@ -110,17 +94,17 @@ test-3.9-linux:
@@ -110,17 +94,17 @@ test-3.9-linux:
- cd tests
- cd tests
- python -m unittest discover
- python -m unittest discover
test-3.5-macos:
test-3.9-macos:
stage:
stage:
test
test
tags:
tags:
- Apple
- Apple
dependencies:
dependencies:
- build-3.5-macos
- build-3.9-macos
needs: [build-3.5-macos]
needs: [build-3.9-macos]
script:
script:
- export PATH=/opt/local/bin:$PATH
- export PATH=/opt/local/bin:$PATH
- virtualenv -p python3.5 .
- virtualenv -p python3.9 .
- source bin/activate
- source bin/activate
- pip install dist3/*.whl
- pip install dist3/*.whl
- cd tests
- cd tests
@@ -141,22 +125,6 @@ test-3.9-macos-m1:
@@ -141,22 +125,6 @@ test-3.9-macos-m1:
- pip install dist3/*.whl
- pip install dist3/*.whl
- cd tests
- cd tests
- python -m unittest discover
- python -m unittest discover
test-2.7-macos:
stage:
test
tags:
- Apple
dependencies:
- build-2.7-macos
needs: [build-2.7-macos]
script:
- export PATH=/opt/local/bin:$PATH
- virtualenv -p python2.7 .
- source bin/activate
- pip install dist2/*.whl
- cd tests
- python -m unittest discover
deploy-3.9-VS2017:
deploy-3.9-VS2017:
stage:
stage:
@@ -187,14 +155,14 @@ deploy-3.9-linux:
@@ -187,14 +155,14 @@ deploy-3.9-linux:
paths:
paths:
- release/*.whl
- release/*.whl
deploy-3.5-macos:
deploy-3.9-macos:
stage:
stage:
deploy
deploy
tags:
tags:
- Apple
- Apple
dependencies:
dependencies:
- build-3.5-macos
- build-3.9-macos
needs: [build-3.5-macos]
needs: [build-3.9-macos]
script:
script:
- mkdir release
- mkdir release
- cp dist3/*.whl release
- cp dist3/*.whl release
@@ -217,21 +185,6 @@ deploy-3.9-macos-m1:
@@ -217,21 +185,6 @@ deploy-3.9-macos-m1:
paths:
paths:
- release/*.whl
- release/*.whl
deploy-2.7-macos:
stage:
deploy
tags:
- Apple
dependencies:
- build-2.7-macos
needs: [build-2.7-macos]
script:
- mkdir release
- cp dist2/*.whl release
artifacts:
paths:
- release/*.whl
deploy-sdist:
deploy-sdist:
stage:
stage:
deploy
deploy
Loading