Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
openmesh-python
Commits
89c362ab
Commit
89c362ab
authored
Feb 07, 2018
by
Isaak Lim
Browse files
install wheels in test stage
parent
1a2d56ac
Pipeline
#6172
passed with stages
in 1 minute and 20 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
89c362ab
...
...
@@ -11,14 +11,12 @@ build-3.5:
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
script
:
-
virtualenv --clear -p python3.5 .
/venv3
-
source
./venv3/
bin/activate
-
virtualenv --clear -p python3.5 .
-
source bin/activate
-
python setup.py bdist_wheel --dist-dir dist3
-
pip install dist3/*.whl
artifacts
:
paths
:
-
dist3/
-
venv3/
build-2.7
:
stage
:
...
...
@@ -28,14 +26,12 @@ build-2.7:
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
script
:
-
virtualenv --clear -p python2.7 .
/venv2
-
source
./venv2/
bin/activate
-
virtualenv --clear -p python2.7 .
-
source bin/activate
-
python setup.py bdist_wheel --dist-dir dist2
-
pip install dist2/*.whl
artifacts
:
paths
:
-
dist2/
-
venv2/
test-3.5
:
stage
:
...
...
@@ -45,7 +41,9 @@ test-3.5:
dependencies
:
-
build-3.5
script
:
-
source ./venv3/bin/activate
-
virtualenv --clear -p python3.5 .
-
source bin/activate
-
pip install dist3/*.whl
-
cd tests
-
python -m unittest discover
...
...
@@ -57,7 +55,9 @@ test-2.7:
dependencies
:
-
build-2.7
script
:
-
source ./venv2/bin/activate
-
virtualenv --clear -p python2.7 .
-
source bin/activate
-
pip install dist2/*.whl
-
cd tests
-
python -m unittest discover
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment