X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/861cff5ffc2eb2739573b8991fca1cfdc388377f..c980683a243903babe9cc09cabc71e1c6229fef1:/build/run-build-docker-jobs-image.sh diff --git a/build/run-build-docker-jobs-image.sh b/build/run-build-docker-jobs-image.sh index fcf849bc4d..15f788163e 100755 --- a/build/run-build-docker-jobs-image.sh +++ b/build/run-build-docker-jobs-image.sh @@ -54,21 +54,23 @@ do esac done - EXITCODE=0 -COLUMNS=80 - -title () { - printf "\n%*s\n\n" $(((${#title}+$COLUMNS)/2)) "********** $1 **********" +exit_cleanly() { + trap - INT + report_outcomes + exit $EXITCODE } +COLUMNS=80 +. $WORKSPACE/build/run-library.sh + docker_push () { if [[ ! -z "$tags" ]] then for tag in $( echo $tags|tr "," " " ) do - $DOCKER tag -f $1 $1:$tag + $DOCKER tag $1 $1:$tag done fi @@ -82,17 +84,9 @@ docker_push () { done if [[ "$ECODE" != "0" ]]; then - title "!!!!!! docker push $* failed !!!!!!" EXITCODE=$(($EXITCODE + $ECODE)) fi -} - -timer_reset() { - t0=$SECONDS -} - -timer() { - echo -n "$(($SECONDS - $t0))s" + checkexit $ECODE "docker push $*" } # Sanity check @@ -131,15 +125,19 @@ rm -f config.yml # Get test config.yml file cp $HOME/docker/config.yml . -./build.sh jobs-image +if [[ ! -z "$tags" ]]; then + COMMIT=${tags/,*/} ./build.sh jobs-image +else + ./build.sh jobs-image +fi ECODE=$? if [[ "$ECODE" != "0" ]]; then - title "!!!!!! docker BUILD FAILED !!!!!!" EXITCODE=$(($EXITCODE + $ECODE)) fi +checkexit $ECODE "docker build" title "docker build complete (`timer`)" title "uploading images" @@ -155,10 +153,10 @@ else docker login -u arvados docker_push arvados/jobs - title "upload arvados images complete (`timer`)" + title "upload arvados images finished (`timer`)" else - title "upload arvados images SKIPPED because no --upload option set" + title "upload arvados images SKIPPED because no --upload option set (`timer`)" fi fi -exit $EXITCODE +exit_cleanly