Skip to content
Snippets Groups Projects
Commit fb3a885c authored by Jan Möbius's avatar Jan Möbius
Browse files

Added m1 test build

parent 9e8e6717
No related branches found
No related tags found
1 merge request!5Updates
Pipeline #20340 failed
......@@ -50,6 +50,22 @@ build-3.5-macos:
artifacts:
paths:
- dist3/
build-3.9-macos-m1:
stage:
build
tags:
- AppleM1
variables:
GIT_SUBMODULE_STRATEGY: recursive
script:
- export PATH=/opt/local/bin:$PATH
- virtualenv -p python3.9 .
- source bin/activate
- python setup.py bdist_wheel --dist-dir dist3
artifacts:
paths:
- dist3/
build-2.7-macos:
stage:
......@@ -107,6 +123,21 @@ test-3.5-macos:
- cd tests
- python -m unittest discover
test-3.9-macos-m1:
stage:
test
tags:
- Apple
dependencies:
- build-3.9-macos-m1
script:
- export PATH=/opt/local/bin:$PATH
- virtualenv -p python3.9 .
- source bin/activate
- pip install dist3/*.whl
- cd tests
- python -m unittest discover
test-2.7-macos:
stage:
test
......@@ -162,6 +193,20 @@ deploy-3.5-macos:
artifacts:
paths:
- release/*.whl
deploy-3.9-macos-m1:
stage:
deploy
tags:
- Apple
dependencies:
- build-3.9-macos-m1
script:
- mkdir release
- cp dist3/*.whl release
artifacts:
paths:
- release/*.whl
deploy-2.7-macos:
stage:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment