2 # Copyright (C) The Arvados Authors. All rights reserved.
4 # SPDX-License-Identifier: AGPL-3.0
8 echo >&2 "usage: WORKSPACE=/path/to/arvados $0 [options]"
10 echo >&2 "$0 options:"
11 echo >&2 " -t, --tags version tag for docker"
12 echo >&2 " -r, --repo Arvados package repo to use: dev (default), testing, stable"
13 echo >&2 " -u, --upload Upload the images (docker push)"
14 echo >&2 " --no-cache Don't use build cache"
15 echo >&2 " -h, --help Display this help and exit"
17 echo >&2 " WORKSPACE=path Path to the Arvados source tree to build from"
23 # NOTE: This requires GNU getopt (part of the util-linux package on Debian-based distros).
24 TEMP=`getopt -o hut:r: \
25 --long help,upload,no-cache,tags:,repo: \
28 if [ $? != 0 ] ; then echo "Use -h for help"; exit 1 ; fi
29 # Note the quotes around `$TEMP': they are essential!
46 echo "ERROR: --tags needs a parameter";
59 echo "ERROR: --repo needs a parameter";
89 if ! [[ -n "$WORKSPACE" ]]; then
91 echo >&2 "Error: WORKSPACE environment variable not set"
99 . $WORKSPACE/build/run-library.sh
102 # Sometimes docker push fails; retry it a few times if necessary.
103 for i in `seq 1 5`; do
106 if [[ "$ECODE" == "0" ]]; then
111 if [[ "$ECODE" != "0" ]]; then
112 EXITCODE=$(($EXITCODE + $ECODE))
114 checkexit $ECODE "docker push $*"
117 # find the docker binary
118 DOCKER=`which docker.io`
120 if [[ "$DOCKER" == "" ]]; then
121 DOCKER=`which docker`
124 if [[ "$DOCKER" == "" ]]; then
125 title "Error: you need to have docker installed. Could not find the docker executable."
130 title "Starting docker build"
134 # clean up the docker build environment
137 if [[ -z "$ARVADOS_BUILDING_VERSION" ]] && ! [[ -z "$version_tag" ]]; then
138 ARVADOS_BUILDING_VERSION="$version_tag"
139 ARVADOS_BUILDING_ITERATION="1"
142 python_sdk_ts=$(cd sdk/python && timestamp_from_git)
143 cwl_runner_ts=$(cd sdk/cwl && timestamp_from_git)
145 python_sdk_version=$(cd sdk/python && nohash_version_from_git 0.1)
146 cwl_runner_version=$(cd sdk/cwl && nohash_version_from_git 1.0)
148 if [[ $python_sdk_ts -gt $cwl_runner_ts ]]; then
149 cwl_runner_version=$(cd sdk/python && nohash_version_from_git 1.0)
152 echo cwl_runner_version $cwl_runner_version python_sdk_version $python_sdk_version
154 if [[ "${python_sdk_version}" != "${ARVADOS_BUILDING_VERSION}" ]]; then
155 python_sdk_version="${python_sdk_version}-1"
157 python_sdk_version="${ARVADOS_BUILDING_VERSION}-${ARVADOS_BUILDING_ITERATION}"
160 cwl_runner_version_orig=$cwl_runner_version
162 if [[ "${cwl_runner_version}" != "${ARVADOS_BUILDING_VERSION}" ]]; then
163 cwl_runner_version="${cwl_runner_version}-1"
165 cwl_runner_version="${ARVADOS_BUILDING_VERSION}-${ARVADOS_BUILDING_ITERATION}"
169 docker build $NOCACHE \
170 --build-arg python_sdk_version=${python_sdk_version} \
171 --build-arg cwl_runner_version=${cwl_runner_version} \
172 --build-arg repo_version=${REPO} \
173 -t arvados/jobs:$cwl_runner_version_orig .
177 if [[ "$ECODE" != "0" ]]; then
178 EXITCODE=$(($EXITCODE + $ECODE))
181 checkexit $ECODE "docker build"
182 title "docker build complete (`timer`)"
184 if [[ "$ECODE" != "0" ]]; then
190 if docker --version |grep " 1\.[0-9]\." ; then
191 # Docker version prior 1.10 require -f flag
192 # -f flag removed in Docker 1.12
196 #docker export arvados/jobs:$cwl_runner_version_orig | docker import - arvados/jobs:$cwl_runner_version_orig
198 if ! [[ -z "$version_tag" ]]; then
199 docker tag $FORCE arvados/jobs:$cwl_runner_version_orig arvados/jobs:"$version_tag"
201 docker tag $FORCE arvados/jobs:$cwl_runner_version_orig arvados/jobs:latest
206 if [[ "$ECODE" != "0" ]]; then
207 EXITCODE=$(($EXITCODE + $ECODE))
210 checkexit $ECODE "docker tag"
211 title "docker tag complete (`timer`)"
213 title "uploading images"
217 if [[ "$ECODE" != "0" ]]; then
218 title "upload arvados images SKIPPED because build or tag failed"
220 if [[ $upload == true ]]; then
221 ## 20150526 nico -- *sometimes* dockerhub needs re-login
222 ## even though credentials are already in .dockercfg
223 docker login -u arvados
224 if ! [[ -z "$version_tag" ]]; then
225 docker_push arvados/jobs:"$version_tag"
227 docker_push arvados/jobs:$cwl_runner_version_orig
228 docker_push arvados/jobs:latest
230 title "upload arvados images finished (`timer`)"
232 title "upload arvados images SKIPPED because no --upload option set (`timer`)"