Skip to content

Commit

Permalink
Merge pull request #220 from v3io/development
Browse files Browse the repository at this point in the history
try/catch upload to pypi
  • Loading branch information
gkirok authored Apr 16, 2019
2 parents b2b5101 + 0cce6f7 commit 2581b42
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,11 @@ podTemplate(label: "${git_project}-${label}", inheritFrom: "jnlp-docker-golang-p
common.shellc("pip install pipenv")
common.shellc("make python-deps")
common.shellc("make test-py")
common.shellc("TRAVIS_REPO_SLUG=v3io/frames V3IO_PYPI_USER=${V3IO_PYPI_USER} V3IO_PYPI_PASSWORD=${V3IO_PYPI_PASSWORD} TRAVIS_TAG=${FRAMES_PYPI_VERSION} make pypi")
try {
common.shellc("TRAVIS_REPO_SLUG=v3io/frames V3IO_PYPI_USER=${V3IO_PYPI_USER} V3IO_PYPI_PASSWORD=${V3IO_PYPI_PASSWORD} TRAVIS_TAG=${FRAMES_PYPI_VERSION} make pypi")
} catch (err) {
echo "Can not upload to pypi"
}
}
}
} else {
Expand Down

0 comments on commit 2581b42

Please sign in to comment.