diff --git a/build-all.sh b/build-all.sh index 9e3f036..5fe2f43 100755 --- a/build-all.sh +++ b/build-all.sh @@ -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[@]}"