diff --git a/ci/Jenkinsfile.combined b/ci/Jenkinsfile.combined index 4897c5ffc4..07ae12e6f2 100644 --- a/ci/Jenkinsfile.combined +++ b/ci/Jenkinsfile.combined @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.6' +library 'status-jenkins-lib@v1.8.11' /* Object to store public URLs for description. */ urls = [:] diff --git a/ci/Jenkinsfile.linux b/ci/Jenkinsfile.linux index 7677f86e89..b875a2d782 100644 --- a/ci/Jenkinsfile.linux +++ b/ci/Jenkinsfile.linux @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.3' +library 'status-jenkins-lib@v1.8.11' /* Options section can't access functions in objects. */ def isPRBuild = utils.isPRBuild() @@ -62,7 +62,7 @@ pipeline { } environment { - TARGET = "linux/${getArch()}" + PLATFORM = "linux/${getArch()}" /* Improve make performance */ MAKEFLAGS = "-j4 V=${params.VERBOSE}" /* Makefile assumes the compiler folder is included */ diff --git a/ci/Jenkinsfile.macos b/ci/Jenkinsfile.macos index 0ba8f1b988..652141318a 100644 --- a/ci/Jenkinsfile.macos +++ b/ci/Jenkinsfile.macos @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.3' +library 'status-jenkins-lib@v1.8.11' /* Options section can't access functions in objects. */ def isPRBuild = utils.isPRBuild() @@ -62,7 +62,7 @@ pipeline { } environment { - TARGET = "macos/${getArch()}" + PLATFORM = "macos/${getArch()}" /* Improve make performance */ MAKEFLAGS = "-j4 V=${params.VERBOSE}" /* WARNING: Qt 5.15.8 installed via Brew. */ diff --git a/ci/Jenkinsfile.tests-nim b/ci/Jenkinsfile.tests-nim index eaf277ca39..13b227c9ff 100644 --- a/ci/Jenkinsfile.tests-nim +++ b/ci/Jenkinsfile.tests-nim @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.3' +library 'status-jenkins-lib@v1.8.11' /* Options section can't access functions in objects. */ def isPRBuild = utils.isPRBuild() @@ -42,7 +42,7 @@ pipeline { } environment { - TARGET = 'tests/nim' + PLATFORM = 'tests/nim' /* Improve make performance */ MAKEFLAGS = "-j4 V=${params.VERBOSE}" /* Makefile assumes the compiler folder is included */ diff --git a/ci/Jenkinsfile.tests-ui b/ci/Jenkinsfile.tests-ui index 50f2507d09..c883461d18 100644 --- a/ci/Jenkinsfile.tests-ui +++ b/ci/Jenkinsfile.tests-ui @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.3' +library 'status-jenkins-lib@v1.8.11' /* Options section can't access functions in objects. */ def isPRBuild = utils.isPRBuild() @@ -34,7 +34,7 @@ pipeline { } environment { - TARGET = 'tests/ui' + PLATFORM = 'tests/ui' /* Improve make performance */ MAKEFLAGS = "-j4 V=${params.VERBOSE}" /* Makefile assumes the compiler folder is included */ diff --git a/ci/Jenkinsfile.windows b/ci/Jenkinsfile.windows index 90d7525039..980c745e2e 100644 --- a/ci/Jenkinsfile.windows +++ b/ci/Jenkinsfile.windows @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.3' +library 'status-jenkins-lib@v1.8.11' /* Options section can't access functions in objects. */ def isPRBuild = utils.isPRBuild() @@ -54,7 +54,7 @@ pipeline { } environment { - TARGET = "windows/${getArch()}" + PLATFORM = "windows/${getArch()}" /* Improve make performance */ MAKEFLAGS = "-j${utils.getProcCount()} V=${params.VERBOSE}" /* Explicitly set the QT version */ diff --git a/ci/cpp/Jenkinsfile.linux b/ci/cpp/Jenkinsfile.linux index fbdc866b70..a6c20c9696 100644 --- a/ci/cpp/Jenkinsfile.linux +++ b/ci/cpp/Jenkinsfile.linux @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.0' +library 'status-jenkins-lib@v1.8.11' /* Options section can't access functions in objects. */ def isPRBuild = utils.isPRBuild() @@ -45,7 +45,7 @@ pipeline { } environment { - TARGET = 'linux-cpp' + PLATFORM = 'linux-cpp' /* Control output the filename */ STATUS_CLIENT_APPIMAGE = "pkg/${utils.pkgFilename(ext: 'AppImage')}" CONAN_USER_HOME = "${env.WORKSPACE}/build/conan/conan_home" diff --git a/ci/cpp/Jenkinsfile.macos b/ci/cpp/Jenkinsfile.macos index c81c86ec89..85b5f645cd 100644 --- a/ci/cpp/Jenkinsfile.macos +++ b/ci/cpp/Jenkinsfile.macos @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.0' +library 'status-jenkins-lib@v1.8.11' /* Options section can't access functions in objects. */ def isPRBuild = utils.isPRBuild() @@ -42,7 +42,7 @@ pipeline { } environment { - TARGET = 'macos-cpp' + PLATFORM = 'macos-cpp' /* Control output the filename */ STATUS_CLIENT_DMG = "pkg/${utils.pkgFilename(ext: 'dmg')}" } diff --git a/ci/cpp/Jenkinsfile.windows b/ci/cpp/Jenkinsfile.windows index c3052d9c5e..96aa1c31d8 100644 --- a/ci/cpp/Jenkinsfile.windows +++ b/ci/cpp/Jenkinsfile.windows @@ -1,5 +1,5 @@ #!/usr/bin/env groovy -library 'status-jenkins-lib@v1.8.0' +library 'status-jenkins-lib@v1.8.11' /* Options section can't access functions in objects. */ def isPRBuild = utils.isPRBuild() @@ -42,7 +42,7 @@ pipeline { } environment { - TARGET = 'windows-cpp' + PLATFORM = 'windows-cpp' /* Control output the filename */ STATUS_CLIENT_ZIP = "pkg/${utils.pkgFilename(ext: 'zip')}" }