2022-02-10 13:22:41 +00:00
|
|
|
library 'status-jenkins-lib@v1.3.4'
|
2021-04-14 12:44:13 +00:00
|
|
|
|
|
|
|
pipeline {
|
|
|
|
agent { label 'linux' }
|
|
|
|
|
|
|
|
options {
|
|
|
|
timestamps()
|
|
|
|
disableConcurrentBuilds()
|
|
|
|
/* Prevent Jenkins jobs from running forever */
|
|
|
|
timeout(time: 35, unit: 'MINUTES')
|
|
|
|
/* Limit builds retained */
|
|
|
|
buildDiscarder(logRotator(
|
|
|
|
numToKeepStr: '10',
|
|
|
|
daysToKeepStr: '30',
|
|
|
|
artifactNumToKeepStr: '10',
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
2021-04-15 09:20:31 +00:00
|
|
|
parameters {
|
|
|
|
booleanParam(
|
|
|
|
name: 'PUBLISH',
|
|
|
|
description: 'Trigger publishing of build results to GitHub.',
|
|
|
|
defaultValue: getPublishDefault(params.PUBLISH),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-04-14 12:44:13 +00:00
|
|
|
stages {
|
|
|
|
stage('Build') {
|
|
|
|
parallel {
|
|
|
|
stage('Linux') { steps { script {
|
|
|
|
linux = jenkins.Build('status-desktop/platforms/linux')
|
|
|
|
} } }
|
|
|
|
stage('Windows') { steps { script {
|
|
|
|
windows = jenkins.Build('status-desktop/platforms/windows')
|
|
|
|
} } }
|
|
|
|
stage('MacOS') { steps { script {
|
|
|
|
macos = jenkins.Build('status-desktop/platforms/macos')
|
|
|
|
} } }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Archive') {
|
|
|
|
steps { script {
|
|
|
|
sh('rm -f pkg/*')
|
|
|
|
jenkins.copyArts(linux)
|
|
|
|
jenkins.copyArts(windows)
|
|
|
|
jenkins.copyArts(macos)
|
2021-09-28 11:57:19 +00:00
|
|
|
sha = "pkg/${utils.pkgFilename(ext: 'sha256')}"
|
2021-04-14 12:44:13 +00:00
|
|
|
dir('pkg') {
|
|
|
|
/* generate sha256 checksums for upload */
|
|
|
|
sh "sha256sum * | tee ../${sha}"
|
|
|
|
archiveArtifacts('*')
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
}
|
|
|
|
stage('Upload') {
|
|
|
|
steps { script {
|
|
|
|
/* object for easier URLs handling */
|
|
|
|
urls = [
|
|
|
|
/* mobile */
|
|
|
|
Linux: utils.pkgUrl(linux),
|
|
|
|
Windows: utils.pkgUrl(windows),
|
|
|
|
MacOS: utils.pkgUrl(macos),
|
|
|
|
/* upload the sha256 checksums file too */
|
|
|
|
SHA: s3.uploadArtifact(sha),
|
|
|
|
]
|
|
|
|
/* add URLs to the build description */
|
|
|
|
jenkins.setBuildDesc(urls)
|
|
|
|
} }
|
|
|
|
}
|
2021-04-15 09:20:31 +00:00
|
|
|
stage('Publish') {
|
|
|
|
when { expression { params.PUBLISH } }
|
|
|
|
steps { script {
|
|
|
|
github.publishReleaseFiles(repo: 'status-desktop');
|
|
|
|
} }
|
|
|
|
}
|
2021-04-14 12:44:13 +00:00
|
|
|
}
|
|
|
|
}
|
2021-04-15 09:20:31 +00:00
|
|
|
|
|
|
|
/* Helper that makes PUBLISH default to 'false' unless:
|
|
|
|
* - The build is for a release branch
|
|
|
|
* - A user explicitly specified a value
|
|
|
|
* Since release builds create and re-create GitHub drafts every time. */
|
|
|
|
def Boolean getPublishDefault(Boolean previousValue) {
|
|
|
|
if (env.JOB_NAME.startsWith('status-desktop/release')) { return true }
|
|
|
|
if (previousValue != null) { return previousValue }
|
|
|
|
return false
|
|
|
|
}
|