Skip to content

Commit

Permalink
updated circleci cfg (#33)
Browse files Browse the repository at this point in the history
* updated circleci cfg
  • Loading branch information
pkittenis authored Oct 25, 2020
1 parent 11df964 commit 05fac6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,10 @@ jobs:
- run:
name: Build Wheels
command: |
if [[ -z "${CIRCLE_PULL_REQUEST}" ]]; then
if [[ -z "${CIRCLE_PR_NUMBER}" ]]; then
echo "$DOCKER_PASSWORD" | docker login -u="$DOCKER_USERNAME" --password-stdin;
fi
./ci/travis/build-manylinux.sh
./ci/build-manylinux.sh
- run:
name: Upload Wheels
command: |
Expand Down
2 changes: 1 addition & 1 deletion ci/build-manylinux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ python ci/appveyor/fix_version.py .

docker pull $docker_tag || echo
docker build --pull --cache-from $docker_tag ci/docker/manylinux -t $docker_tag
if [[ -z "$CIRCLE_PULL_REQUEST" ]]; then docker push $docker_tag; fi
if [[ -z "$CIRCLE_PR_NUMBER" ]]; then docker push $docker_tag; fi
docker run --rm -v `pwd`:/io $docker_tag /io/ci/build-wheels.sh
ls wheelhouse/

0 comments on commit 05fac6d

Please sign in to comment.