summaryrefslogtreecommitdiff
path: root/build-all-with-docker
diff options
context:
space:
mode:
Diffstat (limited to 'build-all-with-docker')
-rwxr-xr-xbuild-all-with-docker12
1 files changed, 1 insertions, 11 deletions
diff --git a/build-all-with-docker b/build-all-with-docker
index 00a973e15..d012b19a0 100755
--- a/build-all-with-docker
+++ b/build-all-with-docker
@@ -46,17 +46,7 @@ if [ -n "$(git status --porcelain)" ]; then
fi
ids=$(
- for pkg in */PKGBUILD; do
- cd "${pkg%/PKGBUILD}"
- ../addPkgbuildPatch add
- {
- printf '%s-build:latest\n' arch artix
- printf 'arch32-%s-build\n' i486 i686 pentium4
- } \
- | shuf \
- | xargs -rn1 docker run --rm -d -v .:/build
- cd ..
- done \
+ parallel "$0" ::: */PKGBUILD \
| tee /dev/stderr
)