mirror of
https://github.com/clearlinux/mixer-tools.git
synced 2026-09-06 05:31:50 +00:00
Update validate-swupd.sh script to use --native
Signed-off-by: Tudor Marcu <tudor.marcu@intel.com>
This commit is contained in:
+3
-3
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user