From b114ee237bc8993bed283b6e932dfa5aa4fb0a03 Mon Sep 17 00:00:00 2001 From: Tudor Marcu Date: Thu, 9 Aug 2018 14:47:42 -0700 Subject: [PATCH] Update validate-swupd.sh script to use --native Signed-off-by: Tudor Marcu --- validate-swupd.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/validate-swupd.sh b/validate-swupd.sh index bd7a085..663fa65 100755 --- a/validate-swupd.sh +++ b/validate-swupd.sh @@ -57,20 +57,20 @@ for i in $(seq $1 10 $2); do # increase the number of bundle-workers on larger systems # keep in mind that this is network bound due to dnf installs # of upstream tarballs - mixer build bundles --bundle-workers 8 + mixer build bundles --bundle-workers 8 --native if [[ $? -ne 0 ]]; then echo "failed to build mix bundles" exit 1 fi # increase the number of fullfile-workers on larger systems - mixer build update --fullfile-workers 8 --min-version $1 --format $3 + mixer build update --fullfile-workers 8 --min-version $1 --format $3 --native if [[ $? -ne 0 ]]; then echo "failed to build mix update" exit 1 fi # increase the number of delta-workers on larger systems # this is memory-bound instead of cpu-bound - mixer build delta-packs --previous-versions 1 --delta-workers 4 + mixer build delta-packs --previous-versions 3 --delta-workers 4 --native if [[ $? -ne 0 ]]; then echo "failed to build delta packs" exit 1