Skip to content

Commit

Permalink
[ci] refs skycoin#104 - Separate .travis.yml commands with semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
olemis committed Jan 15, 2019
1 parent 5ac1457 commit 51024cb
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ script:
- make test-ci
- mkdir -p dist
- if [ "$PYPI_DEPLOY" = "true" ]; then
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/travis/build-wheels.sh
ls wheelhouse/
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/travis/build-wheels.sh ;
ls wheelhouse/ ;
fi
- if [ "$PYPI_DEPLOY" = "true" ]; then
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/travis/build-wheels.sh
ls wheelhouse/
cp wheelhouse/* dist/*
docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/travis/build-wheels.sh ;
ls wheelhouse/ ;
cp wheelhouse/* dist/ ;
fi
- ls dist/
after_failure:
Expand Down

0 comments on commit 51024cb

Please sign in to comment.