mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
40 lines
1.7 KiB
Bash
Executable File
40 lines
1.7 KiB
Bash
Executable File
###########################################################################
|
|
# script.sh
|
|
# ---------------------
|
|
# Date : March 2016
|
|
# Copyright : (C) 2016 by Matthias Kuhn
|
|
# Email : matthias at opengis dot ch
|
|
###########################################################################
|
|
# #
|
|
# This program is free software; you can redistribute it and/or modify #
|
|
# it under the terms of the GNU General Public License as published by #
|
|
# the Free Software Foundation; either version 2 of the License, or #
|
|
# (at your option) any later version. #
|
|
# #
|
|
###########################################################################
|
|
|
|
set -e
|
|
|
|
source $(git rev-parse --show-toplevel)/.ci/travis/scripts/travis_envvar_helper.sh
|
|
|
|
DOCKER_QGIS_IMAGE_BUILD_PUSH=$(create_qgis_image)
|
|
|
|
mkdir -p $CCACHE_DIR
|
|
|
|
if [[ $DOCKER_QGIS_IMAGE_BUILD_PUSH =~ true ]]; then
|
|
DIR=$(git rev-parse --show-toplevel)/.docker
|
|
pushd ${DIR}
|
|
echo "${bold}Building QGIS Docker image '${DOCKER_TAG}'...${endbold}"
|
|
docker build --build-arg CACHE_DIR=/root/.ccache \
|
|
--build-arg DOCKER_TAG=${DOCKER_TAG} \
|
|
--cache-from "qgis/qgis:${DOCKER_TAG}" \
|
|
-t "qgis/qgis:${DOCKER_TAG}" \
|
|
-f qgis.dockerfile ..
|
|
echo "${bold}Pushing image to docker hub...${endbold}"
|
|
docker login -u="$DOCKER_USERNAME" -p="$DOCKER_PASSWORD"
|
|
docker push "qgis/qgis:${DOCKER_TAG}"
|
|
popd
|
|
else
|
|
docker-compose -f $DOCKER_COMPOSE run --rm qgis-deps
|
|
fi
|