From 7bf491c3a50641d3b2f63eef5d29065cedd8b308 Mon Sep 17 00:00:00 2001 From: Thomas Bernard Date: Tue, 22 Jan 2019 12:20:46 +0100 Subject: [PATCH] gitlab-ci: -j2 instead of -j3 --- .gitlab-ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b3690bf5..ca0b601e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,13 +22,17 @@ job_win32: - apt-get update -qq && apt-get install -y -qq zip dos2unix - apt-get install -y -qq gcc-mingw-w64-i686 g++-mingw-w64-i686 mingw-w64-tools nsis script: - - "WIN32CROSS=1 make 3rdparty -j3" - - "WIN32CROSS=1 make -j3" + - "WIN32CROSS=1 make 3rdparty -j2" + - "WIN32CROSS=1 make -j2" - "WIN32CROSS=1 make ziprelease" - "WIN32CROSS=1 make win32installer" - - "WIN32CROSS=1 API=win32 make -j3" + - "WIN32CROSS=1 API=win32 make -j2" - "WIN32CROSS=1 API=win32 make ziprelease" - "WIN32CROSS=1 API=win32 make win32installer" + - "WIN32CROSS=1 API=sdl2 make 3rdparty -j2" + - "WIN32CROSS=1 API=sdl2 make -j2" + - "WIN32CROSS=1 API=sdl2 make ziprelease" + - "WIN32CROSS=1 API=sdl2 make win32installer" artifacts: paths: - "*.zip"