Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ifs
sconsider
Commits
7388183f
Commit
7388183f
authored
Dec 15, 2016
by
Marcel Huber
Browse files
store artifacts either from test or deploy stage
build stage only contains the wheel file but not the source file
parent
85f1c43a
Pipeline
#73
passed with stages
in 5 minutes and 53 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
7388183f
...
...
@@ -13,10 +13,6 @@ build:
script
:
-
tox2 --version
-
tox2 --recreate -e wheel
artifacts
:
paths
:
-
dist/*.whl
-
dist/*.tar.gz
test
:
stage
:
test
...
...
@@ -24,7 +20,10 @@ test:
-
docker
variables
:
PYPI_REPO_NAME
:
testpypi
dependencies
:
[]
artifacts
:
paths
:
-
dist/*.whl
-
dist/*.tar.gz
script
:
-
tox2 --recreate
-
tox2 --recreate -e upload
...
...
@@ -39,5 +38,9 @@ deploy:
-
tags
-
triggers
dependencies
:
[]
artifacts
:
paths
:
-
dist/*.whl
-
dist/*.tar.gz
script
:
-
tox2 --recreate -e upload
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