Skip to content

Commit

Permalink
Updated travis cfg.
Browse files Browse the repository at this point in the history
  • Loading branch information
pkittenis committed Jul 12, 2018
1 parent 5b6d983 commit 3ed7afc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,17 @@ jobs:
- ./ci/travis/pyenv-wheel.sh
after_success:
- if [[ ! -z "$TRAVIS_TAG" ]]; then
twine upload -u $PYPI_U -p $PYPI_P wheels/*.whl;
twine upload --skip-existing -u $PYPI_U -p $PYPI_P wheels/*.whl;
fi
language: generic
python: skip

- <<: *osx-10-10
env:
- PYENV: 3.7.0
install: skip
script:
- ./ci/travis/pyenv-wheel.sh

- &osx-wheels
stage: build packages
Expand Down Expand Up @@ -107,7 +110,7 @@ jobs:
- ./ci/travis/pyenv-wheel.sh
after_success:
- if [[ ! -z "$TRAVIS_TAG" ]]; then
twine upload -u $PYPI_U -p $PYPI_P wheels/*.whl;
twine upload --skip-existing -u $PYPI_U -p $PYPI_P wheels/*.whl;
fi
language: generic
python: skip
Expand Down Expand Up @@ -176,7 +179,7 @@ jobs:
- ./ci/travis/build-manylinux.sh
after_success:
- if [[ ! -z "$TRAVIS_TAG" ]]; then
twine upload -u $PYPI_U -p $PYPI_P wheelhouse/*.whl;
twine upload --skip-existing -u $PYPI_U -p $PYPI_P wheelhouse/*.whl;
fi
deploy:
- provider: pypi
Expand Down
1 change: 1 addition & 0 deletions ci/travis/pyenv-wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,4 @@ deactivate
set -x

mv -f *.whl wheels/
ls -lh wheels

0 comments on commit 3ed7afc

Please sign in to comment.