From 1f088e7f7f802da8389ab664c567bce33f887c33 Mon Sep 17 00:00:00 2001 From: Katerina Koukiou Date: Wed, 2 Oct 2024 17:15:06 +0200 Subject: [PATCH] Reduce temporarily paralellism and increase memory of VMs Because the updates.img got even bigger. --- test/machine_install.py | 2 +- test/run | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/machine_install.py b/test/machine_install.py index a273eaba75..0d3b603205 100755 --- a/test/machine_install.py +++ b/test/machine_install.py @@ -132,7 +132,7 @@ def start(self): f"{boot_arg} " f"--name {self.label} " f"--os-variant=detect=on " - "--memory 4096 " + "--memory 6144 " "--noautoconsole " f"--graphics vnc,listen={self.ssh_address} " "--extra-args " diff --git a/test/run b/test/run index 65450fc5a8..ce92d27770 100755 --- a/test/run +++ b/test/run @@ -36,10 +36,10 @@ esac # denials; SELinux gets disabled, but would still trigger unexpected messages # we create huge VMs, so we need to reduce parallelism on CI if [ -z "${TEST_JOBS-}" ]; then - TEST_JOBS=4 + TEST_JOBS=8 fi if [ -z "${TEST_OS-}" ]; then TEST_OS=fedora-rawhide-boot fi export TEST_JOBS TEST_OS -J=$(($TEST_JOBS/4)); [ $J -ge 1 ] || J=1; TEST_AUDIT_NO_SELINUX=1 test/common/run-tests --test-dir test/ --jobs $J $RUN_OPTS +J=$(($TEST_JOBS/8)); [ $J -ge 1 ] || J=1; TEST_AUDIT_NO_SELINUX=1 test/common/run-tests --test-dir test/ --jobs $J $RUN_OPTS