Skip to content

Commit

Permalink
artifact: fix ignore other-than-master builds logic
Browse files Browse the repository at this point in the history
  • Loading branch information
ivotron committed Jul 10, 2020
1 parent 6c010da commit 4075c7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .popper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ steps:
# for the rest, only continue if build:
# 1. is for upstream (getpopper/popper) repo
# 2. corresponds to the docker,python-3.7 element of the matrix
if [[ $TRAVIS_PULL_REQUEST != false ]] || [[ $GIT_REMOTE_ORIGIN_URL != "https://github.com/getpopper/popper.git" ]] || [[ $GIT_BRANCH != "master" ]] || [[ $ENGINE != "docker" ]] || [[ $TRAVIS_PYTHON_VERSION != "3.7" ]]; then
if [[ $TRAVIS_PULL_REQUEST != false ]] || [[ $GIT_REMOTE_ORIGIN_URL != "https://github.com/getpopper/popper" ]] || [[ $GIT_BRANCH != "master" ]] || [[ $ENGINE != "docker" ]] || [[ $TRAVIS_PYTHON_VERSION != "3.7" ]]; then
exit 78
fi
Expand Down

0 comments on commit 4075c7a

Please sign in to comment.