status-react/ci/Jenkinsfile.macos

68 lines
1.5 KiB
Plaintext
Raw Normal View History

pipeline {
agent { label 'macos' }
options {
timestamps()
/* Prevent Jenkins jobs from running forever */
timeout(time: 25, unit: 'MINUTES')
/* Limit builds retained */
buildDiscarder(logRotator(
numToKeepStr: '60',
daysToKeepStr: '30',
artifactNumToKeepStr: '60',
))
}
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'
}
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 }
}
}
}