Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools_dso
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
setuptools_dso
Commits
15bec514
Commit
15bec514
authored
Jan 06, 2020
by
Michael Davidsaver
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
travis always install twine
Try to avoid problems only detectable in tag builds.
parent
009689f9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
3 deletions
+20
-3
.travis.yml
.travis.yml
+20
-3
No files found.
.travis.yml
View file @
15bec514
...
...
@@ -5,36 +5,53 @@ matrix:
services
:
-
docker
env
:
DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
install
:
docker pull $DOCKER_IMAGE
install
:
-
sudo ${PYTHON:-python} -m pip install twine
-
${PYTHON:-python} -m twine -h
-
docker pull $DOCKER_IMAGE
script
:
docker run --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/travis-docker.sh
-
sudo
:
required
language
:
generic
services
:
-
docker
env
:
DOCKER_IMAGE=quay.io/pypa/manylinux1_i686 PRE_CMD=linux32
install
:
docker pull $DOCKER_IMAGE
install
:
-
sudo ${PYTHON:-python} -m pip install twine
-
${PYTHON:-python} -m twine -h
-
docker pull $DOCKER_IMAGE
script
:
docker run --rm -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/travis-docker.sh
-
os
:
osx
language
:
generic
env
:
PYTHON=python2 PYVER=2.7 URL=https://www.python.org/ftp/python/2.7.15/python-2.7.15-macosx10.6.pkg
install
:
-
${PYTHON:-python} -m pip install twine
-
${PYTHON:-python} -m twine -h
script
:
./travis-osx.sh
-
os
:
osx
language
:
generic
env
:
PYTHON=python3 PYVER=3.4 URL=https://www.python.org/ftp/python/3.4.4/python-3.4.4-macosx10.6.pkg
install
:
-
${PYTHON:-python} -m pip install twine
-
${PYTHON:-python} -m twine -h
script
:
./travis-osx.sh
-
os
:
osx
language
:
generic
env
:
PYTHON=python3 PYVER=3.5 URL=https://www.python.org/ftp/python/3.5.4/python-3.5.4-macosx10.6.pkg
install
:
-
${PYTHON:-python} -m pip install twine
-
${PYTHON:-python} -m twine -h
script
:
./travis-osx.sh
-
os
:
osx
language
:
generic
env
:
PYTHON=python3 PYVER=3.6 URL=https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.6.pkg
install
:
-
${PYTHON:-python} -m pip install twine
-
${PYTHON:-python} -m twine -h
script
:
./travis-osx.sh
after_success
:
-
|
if [ "$TRAVIS_TAG" -a "$TWINE_USERNAME" ] ; then
echo "Deploying"
${PYTHON:-python} -m pip install twine
${PYTHON:-python} -m twine upload --skip-existing dist/*.tar.* dist/*.whl || true
fi
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