[ARVADOS] updated: 2.1.0-49-g34cb1075a
Git user
git at public.arvados.org
Wed Oct 21 16:07:42 UTC 2020
Summary of changes:
build/run-build-docker-images.sh | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
via 34cb1075a924eb30f2f9d88ba74836043c60e73b (commit)
from e04c307f011f5ce3b42dff062e1394256f604037 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 34cb1075a924eb30f2f9d88ba74836043c60e73b
Author: Ward Vandewege <ward at curii.com>
Date: Wed Oct 21 12:06:26 2020 -0400
Make run-build-docker-images.sh a little smarter, allow building just
one type of arvbox images (part 2).
refs #16930
Arvados-DCO-1.1-Signed-off-by: Ward Vandewege <ward at curii.com>
diff --git a/build/run-build-docker-images.sh b/build/run-build-docker-images.sh
index fd7b38e8b..89818e146 100755
--- a/build/run-build-docker-images.sh
+++ b/build/run-build-docker-images.sh
@@ -163,8 +163,12 @@ else
## even though credentials are already in .dockercfg
docker login -u arvados
- docker_push arvados/arvbox-dev
- docker_push arvados/arvbox-demo
+ if [[ "$images" =~ dev ]]; then
+ docker_push arvados/arvbox-dev
+ fi
+ if [[ "$images" =~ demo ]]; then
+ docker_push arvados/arvbox-demo
+ fi
title "upload arvados images complete (`timer`)"
else
title "upload arvados images SKIPPED because no --upload option set"
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list