1
0
forked from mirrors/0ad

Do not hardcode JOBS in CI pipelines

This build environment variable is now set agent-wide and corresponds to
the number of CPUs of each agent.
This commit is contained in:
Itms
2024-09-01 10:35:41 +02:00
committed by Nicolas Auvray
parent 670f68c1c5
commit f7630b155c
4 changed files with 13 additions and 13 deletions
+4 -4
View File
@@ -36,8 +36,8 @@ pipeline {
sh "git lfs pull -I binaries/data/tests"
sh "git lfs pull -I \"binaries/data/mods/_test.*\""
sh "libraries/build-macos-libs.sh -j4 2> macos-prebuild-errors.log"
sh "build/workspaces/update-workspaces.sh -j4 --jenkins-tests 2>> macos-prebuild-errors.log"
sh "libraries/build-macos-libs.sh 2> macos-prebuild-errors.log"
sh "build/workspaces/update-workspaces.sh --jenkins-tests 2>> macos-prebuild-errors.log"
}
post {
failure {
@@ -50,7 +50,7 @@ pipeline {
steps {
retry(2) {
script {
try { sh "cd build/workspaces/gcc/ && make -j4 config=debug" }
try { sh "cd build/workspaces/gcc/ && make config=debug" }
catch(e) {
sh "cd build/workspaces/gcc/ && make clean config=debug"
throw e
@@ -72,7 +72,7 @@ pipeline {
steps {
retry(2) {
script {
try { sh "cd build/workspaces/gcc/ && make -j4 config=release" }
try { sh "cd build/workspaces/gcc/ && make config=release" }
catch(e) {
sh "cd build/workspaces/gcc/ && make clean config=release"
throw e