Skip to content

Commit

Permalink
Reduce temporarily paralellism and increase memory of VMs
Browse files Browse the repository at this point in the history
Because the updates.img got even bigger.
  • Loading branch information
KKoukiou committed Oct 2, 2024
1 parent af6d254 commit 1f088e7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/machine_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 "
Expand Down
4 changes: 2 additions & 2 deletions test/run
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 1f088e7

Please sign in to comment.