From ea384e075efcd1ba0a4943a92f3db75991df339b Mon Sep 17 00:00:00 2001 From: Konstantin Pavlov Date: Thu, 28 Jul 2016 01:57:52 +0300 Subject: [PATCH] Replace myself with a simple shell script. --- rebuild.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 rebuild.sh diff --git a/rebuild.sh b/rebuild.sh new file mode 100644 index 0000000..ff85477 --- /dev/null +++ b/rebuild.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +# this is a helper script to rebuild all base images and then all dependant images +# rebuilding dind image is too dangerous + +BASE="jessie sid" + +DEPS="vlc-debian-unstable vlc-debian-android vlc-debian-win32 vlc-debian-win64" + +for type in $BASE; do + make -C videolan-base/$type push +done + +for dep in $DEPS; do + make -C $dep push +done -- GitLab