export errors

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2017-01-11 21:45:25 -08:00
parent 3c3461d926
commit d132db8e96
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3

View File

@ -6,6 +6,8 @@ SCRIPT="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/$(basename "${BASH_SOURCE[
REPO_URL="${REPO_URL:-r.j3ss.co}"
JOBS=${JOBS:-2}
ERRORS="$(pwd)/errors"
build_and_push(){
base=$1
suite=$2
@ -63,8 +65,6 @@ main(){
files=( $(find . -iname '*Dockerfile' | sed 's|./||' | sort) )
unset IFS
ERRORS="$(pwd)/errors"
# build all dockerfiles
echo "Running in parallel with ${JOBS} jobs."
parallel --tag --verbose --ungroup -j"${JOBS}" $SCRIPT dofile "{1}" ::: "${files[@]}"