Skip to content

Commit f4f3d00

Browse files
committedMar 20, 2018
fix docker variables in Travis
1 parent 88191dc commit f4f3d00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎.ci/travis/linux/before_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ source $(git rev-parse --show-toplevel)/.ci/travis/scripts/travis_envvar_helper.
2323
DOCKER_DEPS_PUSH=$( [[ $TRAVIS_REPO_SLUG =~ qgis/QGIS ]] && [[ $TRAVIS_EVENT_TYPE =~ push ]] && echo "true" || echo "false" )
2424
DOCKER_DEPS_IMAGE_REBUILD=$( [[ $TRAVIS_COMMIT_MESSAGE =~ '[docker] update dependencies' ]] && echo "true" || echo "false" )
2525
# on cron job, QGIS image is built and push without testing
26-
DOCKER_QGIS_IMAGE_BUILD_PUSH=create_qgis_image
26+
DOCKER_QGIS_IMAGE_BUILD_PUSH=$(create_qgis_image)
2727
QGIS_LAST_BUILD_SUCCESS=true # TODO use API to know if last build succeed https://developer.travis-ci.com/resource/builds
2828

2929

‎.ci/travis/linux/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ set -e
1717

1818
source $(git rev-parse --show-toplevel)/.ci/travis/scripts/travis_envvar_helper.sh
1919

20-
DOCKER_QGIS_IMAGE_BUILD_PUSH=create_qgis_image
20+
DOCKER_QGIS_IMAGE_BUILD_PUSH=$(create_qgis_image)
2121

2222
mkdir -p $CCACHE_DIR
2323

0 commit comments

Comments
 (0)