tools-systemd: do parallel runs of amd64 and i686
This commit is contained in:
parent
8d7e8ae3a3
commit
151b14d68f
1 changed files with 4 additions and 2 deletions
|
@ -40,8 +40,10 @@ main() {
|
||||||
# The parallelization `( do_stages ... ) &` doesn't work here
|
# The parallelization `( do_stages ... ) &` doesn't work here
|
||||||
# if catalyst is using snapcache, bug #519656
|
# if catalyst is using snapcache, bug #519656
|
||||||
for arch in amd64 i686; do
|
for arch in amd64 i686; do
|
||||||
|
(
|
||||||
do_stages ${arch}
|
do_stages ${arch}
|
||||||
[[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log
|
[[ $? == 1 ]] && echo "FAILURE at ${arch}" | tee zzz.log
|
||||||
|
) &
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue