Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
openmesh-python
Commits
586950c4
Commit
586950c4
authored
Feb 15, 2018
by
Isaak Lim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
split linux and macos CI jobs
parent
399cf0bf
Pipeline
#6211
failed with stages
in 23 minutes and 10 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
90 additions
and
10 deletions
+90
-10
.gitlab-ci.yml
.gitlab-ci.yml
+90
-10
No files found.
.gitlab-ci.yml
View file @
586950c4
...
...
@@ -3,11 +3,25 @@ stages:
-
test
-
deploy
build-3.5-linux
-macos
:
build-3.5-linux
:
stage
:
build
tags
:
-
Linux
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
script
:
-
virtualenv --clear -p python3.5 .
-
source bin/activate
-
python setup.py bdist_wheel --dist-dir dist3
artifacts
:
paths
:
-
dist3/
build-3.5-macos
:
stage
:
build
tags
:
-
Apple
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
...
...
@@ -20,11 +34,25 @@ build-3.5-linux-macos:
paths
:
-
dist3/
build-2.7-linux
-macos
:
build-2.7-linux
:
stage
:
build
tags
:
-
Linux
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
script
:
-
virtualenv --clear -p python2.7 .
-
source bin/activate
-
python setup.py bdist_wheel --dist-dir dist2
artifacts
:
paths
:
-
dist2/
build-2.7-macos
:
stage
:
build
tags
:
-
Apple
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
...
...
@@ -37,14 +65,27 @@ build-2.7-linux-macos:
paths
:
-
dist2/
test-3.5-linux
-macos
:
test-3.5-linux
:
stage
:
test
tags
:
-
Linux
dependencies
:
-
build-3.5-linux
script
:
-
virtualenv --clear -p python3.5 .
-
source bin/activate
-
pip install dist3/*.whl
-
cd tests
-
python -m unittest discover
test-3.5-macos
:
stage
:
test
tags
:
-
Apple
dependencies
:
-
build-3.5-
linux-
macos
-
build-3.5-macos
script
:
-
export PATH=/opt/local/bin:$PATH
-
virtualenv --clear -p python3.5 .
...
...
@@ -53,14 +94,27 @@ test-3.5-linux-macos:
-
cd tests
-
python -m unittest discover
test-2.7-linux
-macos
:
test-2.7-linux
:
stage
:
test
tags
:
-
Linux
dependencies
:
-
build-2.7-linux
script
:
-
virtualenv --clear -p python2.7 .
-
source bin/activate
-
pip install dist2/*.whl
-
cd tests
-
python -m unittest discover
test-2.7-macos
:
stage
:
test
tags
:
-
Apple
dependencies
:
-
build-2.7-
linux-
macos
-
build-2.7-macos
script
:
-
export PATH=/opt/local/bin:$PATH
-
virtualenv --clear -p python2.7 .
...
...
@@ -69,14 +123,27 @@ test-2.7-linux-macos:
-
cd tests
-
python -m unittest discover
deploy-3.5-linux
-macos
:
deploy-3.5-linux
:
stage
:
deploy
tags
:
-
Linux
dependencies
:
-
build-3.5-linux
script
:
-
mkdir release
-
cp dist3/*.whl release
artifacts
:
paths
:
-
release/*.whl
deploy-3.5-macos
:
stage
:
deploy
tags
:
-
Apple
dependencies
:
-
build-3.5-
linux-
macos
-
build-3.5-macos
script
:
-
mkdir release
-
cp dist3/*.whl release
...
...
@@ -84,14 +151,27 @@ deploy-3.5-linux-macos:
paths
:
-
release/*.whl
deploy-2.7-linux
-macos
:
deploy-2.7-linux
:
stage
:
deploy
tags
:
-
Linux
dependencies
:
-
build-2.7-linux
script
:
-
mkdir release
-
cp dist2/*.whl release
artifacts
:
paths
:
-
release/*.whl
deploy-2.7-macos
:
stage
:
deploy
tags
:
-
Apple
dependencies
:
-
build-2.7-
linux-
macos
-
build-2.7-macos
script
:
-
mkdir release
-
cp dist2/*.whl release
...
...
Write
Preview
Markdown
is supported
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