[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 25/25] gitlab-ci: Only use one process in Windows jobs for com
From: |
Alex Bennée |
Subject: |
[PATCH v1 25/25] gitlab-ci: Only use one process in Windows jobs for compilation |
Date: |
Fri, 26 Aug 2022 18:21:28 +0100 |
From: Thomas Huth <thuth@redhat.com>
The Windows jobs are currently aborting at weird places - and
there's the suspicion that it's due to memory constraints in
the Windows containers. Let's switch to single-threaded compilation
to decrease the pressure on the memory load, and to make the
jobs more deterministic for further investigations.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Message-Id: <20220825193323.104768-1-thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
.gitlab-ci.d/windows.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.gitlab-ci.d/windows.yml b/.gitlab-ci.d/windows.yml
index c4bde758be..da6013904a 100644
--- a/.gitlab-ci.d/windows.yml
+++ b/.gitlab-ci.d/windows.yml
@@ -61,7 +61,7 @@ msys2-64bit:
- .\msys64\usr\bin\bash -lc './configure --target-list=x86_64-softmmu
--enable-capstone --without-default-devices'
- .\msys64\usr\bin\bash -lc "sed -i '/^ROMS=/d' build/config-host.mak"
- - .\msys64\usr\bin\bash -lc 'make -j2'
+ - .\msys64\usr\bin\bash -lc 'make'
- .\msys64\usr\bin\bash -lc 'make check'
msys2-32bit:
@@ -94,5 +94,5 @@ msys2-32bit:
- mkdir output
- cd output
- ..\msys64\usr\bin\bash -lc "../configure --target-list=ppc64-softmmu"
- - ..\msys64\usr\bin\bash -lc 'make -j2'
+ - ..\msys64\usr\bin\bash -lc 'make'
- ..\msys64\usr\bin\bash -lc 'make check'
--
2.30.2
- Re: [PATCH v1 11/25] tests/docker: remove amd64 qemu/debian10 dependency, (continued)
[PATCH v1 15/25] Deprecate 32 bit big-endian MIPS, Alex Bennée, 2022/08/26
[PATCH v1 24/25] tests/docker: remove the Debian base images, Alex Bennée, 2022/08/26
[PATCH v1 22/25] tests/docker: update and flatten debian-toolchain, Alex Bennée, 2022/08/26
[PATCH v1 21/25] tests/docker: update and flatten debian-hexagon-cross, Alex Bennée, 2022/08/26
[PATCH v1 25/25] gitlab-ci: Only use one process in Windows jobs for compilation,
Alex Bennée <=
[PATCH v1 20/25] tests/docker: update and flatten debian-loongarch-cross, Alex Bennée, 2022/08/26
[PATCH v1 19/25] tests/docker: update and flatten debian-amd64-cross, Alex Bennée, 2022/08/26
[PATCH v1 23/25] tests/docker: remove FROM qemu/ support from docker.py, Alex Bennée, 2022/08/26
[PATCH v1 16/25] tests/docker: flatten debian-riscv64-test-cross, Alex Bennée, 2022/08/26