Update validate-swupd.sh script to use --native

Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>
This commit is contained in:
Tudor Marcu
2018-08-09 15:43:26 -07:00
committed by tmarcu
parent 57984ec946
commit b114ee237b
+3 -3
View File
@@ -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