Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
do not push deps images on PR
  • Loading branch information
3nids committed Nov 19, 2018
1 parent 6c3817c commit 8015e0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/travis/linux/before_script.sh
Expand Up @@ -18,7 +18,7 @@ set -e

pushd .docker

DOCKER_DEPS_PUSH=$( [[ $TRAVIS_REPO_SLUG =~ qgis/QGIS ]] && echo "true" || echo "false" )
DOCKER_DEPS_PUSH=$( [[ $TRAVIS_REPO_SLUG =~ qgis/QGIS ]] && [[ "${TRAVIS_EVENT_TYPE}" != "pull_request" ]] && echo "true" || echo "false" )
DOCKER_DEPS_IMAGE_REBUILD=$( [[ $TRAVIS_COMMIT_MESSAGE =~ '[docker] update dependencies' ]] && echo "true" || echo "false" )

echo "travis_fold:start:travis_env"
Expand Down

0 comments on commit 8015e0a

Please sign in to comment.