status-react/ci/Jenkinsfile.macos

94 lines
2.1 KiB
Plaintext
Raw Normal View History

pipeline {
agent { label 'macos' }
parameters {
string(
name: 'BUILD_TYPE',
description: 'Specify build type. Values: pr / nightly / release',
defaultValue: 'pr',
)
}
options {
timestamps()
disableConcurrentBuilds()
/* Prevent Jenkins jobs from running forever */
timeout(time: 25, unit: 'MINUTES')
/* Limit builds retained */
buildDiscarder(logRotator(
numToKeepStr: '10',
daysToKeepStr: '20',
artifactNumToKeepStr: '10',
))
}
environment {
NODE_VERSION = 'v10.14.1'
BUILD_PLATFORM = 'macos'
LANG = 'en_US.UTF-8'
LANGUAGE = 'en_US.UTF-8'
LC_ALL = 'en_US.UTF-8'
QT_PATH = '/usr/local/opt/qt'
PATH = "/usr/local/opt/qt/bin:${env.PATH}"
2018-12-06 14:52:16 +00:00
MACDEPLOYQT = '/usr/local/opt/qt/bin/macdeployqt'
VERBOSE_LEVEL = '3'
}
stages {
stage('Prep') {
steps {
script { nvm(env.NODE_VERSION) {
/* Necessary to load methods */
desktop = load 'ci/desktop.groovy'
cmn = load 'ci/common.groovy'
desktop.prepDeps()
} }
}
}
stage('Lint') {
steps { nvm(env.NODE_VERSION) {
script { cmn.runLint() }
} }
}
stage('Tests') {
steps { nvm(env.NODE_VERSION) {
script { cmn.runTests() }
} }
}
stage('Build') {
steps { nvm(env.NODE_VERSION) {
script { desktop.buildClojureScript() }
} }
}
stage('Compile') {
steps {
script { desktop.compile() }
}
}
stage('Bundle') {
steps { nvm(env.NODE_VERSION) {
script { dmg = desktop.bundleMacOS(cmn.getBuildType()) }
} }
}
stage('Archive') {
steps {
archiveArtifacts dmg
}
}
stage('Upload') {
steps {
script { env.PKG_URL = cmn.uploadArtifact(dmg) }
}
}
stage('Cleanup') {
steps {
script { cmn.clean() }
}
}
}
post {
failure { script { load('ci/common.groovy').notifyPRFailure() } }
success { script { load('ci/common.groovy').notifyPRSuccess() } }
}
}