status-react/ci/Jenkinsfile.macos

48 lines
864 B
Plaintext
Raw Normal View History

pipeline {
agent { label 'macos' }
options {
buildDiscarder(logRotator(
numToKeepStr: '20',
daysToKeepStr: '30',
artifactNumToKeepStr: '10',
))
}
environment {
LANG = 'en_US.UTF-8'
LANGUAGE = 'en_US.UTF-8'
LC_ALL = 'en_US.UTF-8'
}
stages {
stage('Prep') {
steps {
script {
/* Necessary to load methods */
desktop = load 'ci/desktop.groovy'
desktop.prepDeps()
}
}
}
stage('Build') {
steps {
script { desktop.buildClojureScript() }
}
}
stage('Compile') {
steps {
script { desktop.compileMacOS() }
}
}
stage('Bundle') {
steps {
script { dmg = desktop.bundleMacOS(params.BUILD_TYPE) }
}
}
stage('Archive') {
steps { archiveArtifacts dmg }
}
}
}