Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
openmesh-python
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenMesh
openmesh-python
Commits
20f8e2b1
There was a problem fetching the pipeline summary.
Commit
20f8e2b1
authored
7 years ago
by
Isaak Lim
Browse files
Options
Downloads
Patches
Plain Diff
use push-pull cache policy
parent
c4e51cf2
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+27
-10
27 additions, 10 deletions
.gitlab-ci.yml
with
27 additions
and
10 deletions
.gitlab-ci.yml
+
27
−
10
View file @
20f8e2b1
cache
:
paths
:
-
./venv3/
-
./venv2/
-
./dist3/
-
./dist2/
stages
:
-
build
-
test
build-3.5
:
stage
:
build
cache
:
key
:
wheel3
paths
:
-
./venv3
-
./dist3
policy
:
push
tags
:
-
Linux
variables
:
...
...
@@ -19,9 +18,16 @@ build-3.5:
-
virtualenv --clear -p python3.5 ./venv3
-
source ./venv3/bin/activate
-
python setup.py bdist_wheel --dist-dir dist3
-
pip install dist3/*.whl
build-2.7
:
stage
:
build
cache
:
key
:
wheel2
paths
:
-
./venv2
-
./dist2
policy
:
push
tags
:
-
Linux
variables
:
...
...
@@ -30,25 +36,36 @@ build-2.7:
-
virtualenv --clear -p python2.7 ./venv2
-
source ./venv2/bin/activate
-
python setup.py bdist_wheel --dist-dir dist2
-
pip install dist2/*.whl
test-3.5
:
stage
:
test
cache
:
key
:
wheel3
paths
:
-
./venv3
-
./dist3
policy
:
pull
tags
:
-
Linux
script
:
-
source ./venv3/bin/activate
-
pip install dist3/*.whl
-
cd tests
-
python -m unittest discover
test-2.7
:
stage
:
test
cache
:
key
:
wheel2
paths
:
-
./venv2
-
./dist2
policy
:
pull
tags
:
-
Linux
variables
:
GIT_SUBMODULE_STRATEGY
:
recursive
script
:
-
source venv2/bin/activate
-
pip install dist2/*.whl
-
source ./venv2/bin/activate
-
cd tests
-
python -m unittest discover
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment