chore(ci): bump jenkins lib and rename TARGET

Had to be changed to `PLATFORM` due to conflict of `TARGET` with our Nix
shell setup in `status-mobile` and `status-go`.

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2024-03-27 13:23:31 +01:00
parent 3f74ee565a
commit 1851838e64
No known key found for this signature in database
GPG Key ID: FE65CD384D5BF7B4
9 changed files with 17 additions and 17 deletions

View File

@ -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 = [:]

View File

@ -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 */

View File

@ -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. */

View File

@ -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 */

View File

@ -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 */

View File

@ -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 */

View File

@ -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"

View File

@ -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')}"
}

View File

@ -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')}"
}