65 lines
1.3 KiB
Plaintext
65 lines
1.3 KiB
Plaintext
pipeline {
|
|
agent { label 'macos' }
|
|
|
|
options {
|
|
/* Prevent Jenkins jobs from running forever */
|
|
timeout(time: 25, unit: 'MINUTES')
|
|
/* Limit builds retained */
|
|
buildDiscarder(logRotator(
|
|
numToKeepStr: '60',
|
|
daysToKeepStr: '30',
|
|
artifactNumToKeepStr: '60',
|
|
))
|
|
}
|
|
|
|
environment {
|
|
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}"
|
|
}
|
|
|
|
stages {
|
|
stage('Prep') {
|
|
steps {
|
|
script {
|
|
/* Necessary to load methods */
|
|
desktop = load 'ci/desktop.groovy'
|
|
cmn = load 'ci/common.groovy'
|
|
desktop.prepDeps()
|
|
}
|
|
}
|
|
}
|
|
stage('Lint') {
|
|
steps {
|
|
script { cmn.runLint() }
|
|
}
|
|
}
|
|
stage('Tests') {
|
|
steps {
|
|
script { cmn.runTests() }
|
|
}
|
|
}
|
|
stage('Build') {
|
|
steps {
|
|
script { desktop.buildClojureScript() }
|
|
}
|
|
}
|
|
stage('Compile') {
|
|
steps {
|
|
script { desktop.compile() }
|
|
}
|
|
}
|
|
stage('Bundle') {
|
|
steps {
|
|
script { dmg = desktop.bundleMacOS(cmn.getBuildType()) }
|
|
}
|
|
}
|
|
stage('Archive') {
|
|
steps { archiveArtifacts dmg }
|
|
}
|
|
}
|
|
}
|