2020-04-26 14:40:06 +02:00
|
|
|
library 'status-react-jenkins@v1.1.1'
|
2020-03-06 16:43:04 +01:00
|
|
|
|
2018-08-14 14:09:52 -04:00
|
|
|
pipeline {
|
2020-04-16 19:48:18 +02:00
|
|
|
agent { label 'macos-xcode-11.4.1' }
|
2018-08-14 14:09:52 -04:00
|
|
|
|
2018-12-11 12:00:22 +01:00
|
|
|
parameters {
|
2018-12-11 15:27:21 +01:00
|
|
|
string(
|
2018-12-11 12:00:22 +01:00
|
|
|
name: 'BUILD_TYPE',
|
|
|
|
description: 'Specify build type. Values: pr / nightly / release',
|
|
|
|
defaultValue: 'pr',
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-08-14 14:09:52 -04:00
|
|
|
options {
|
2018-11-13 12:58:34 +01:00
|
|
|
timestamps()
|
2018-10-30 10:38:52 +01:00
|
|
|
/* Prevent Jenkins jobs from running forever */
|
2019-07-15 18:34:33 +02:00
|
|
|
timeout(time: 30, unit: 'MINUTES')
|
2018-10-30 10:38:52 +01:00
|
|
|
/* Limit builds retained */
|
2018-08-14 14:09:52 -04:00
|
|
|
buildDiscarder(logRotator(
|
2018-12-13 10:49:16 +01:00
|
|
|
numToKeepStr: '10',
|
|
|
|
daysToKeepStr: '20',
|
|
|
|
artifactNumToKeepStr: '10',
|
2018-08-14 14:09:52 -04:00
|
|
|
))
|
|
|
|
}
|
2018-09-25 20:01:48 +03:00
|
|
|
|
2018-08-14 14:09:52 -04:00
|
|
|
environment {
|
2019-05-10 17:33:54 +02:00
|
|
|
LANG = "en_US.UTF-8"
|
|
|
|
LC_ALL = "en_US.UTF-8"
|
|
|
|
LANGUAGE = "en_US.UTF-8"
|
2019-11-29 11:20:08 +01:00
|
|
|
TARGET = 'macos'
|
2019-03-25 17:35:01 +01:00
|
|
|
NIX_CONF_DIR = "${env.WORKSPACE}/nix"
|
2019-10-09 18:37:58 +03:00
|
|
|
/* See nix/README.md */
|
|
|
|
NIX_IGNORE_SYMLINK_STORE = 1
|
2018-12-21 15:17:49 +01:00
|
|
|
VERBOSE_LEVEL = '3'
|
2019-05-10 17:33:54 +02:00
|
|
|
/* We use EXECUTOR_NUMBER to avoid multiple instances clashing */
|
|
|
|
YARN_CACHE_FOLDER = "/var/tmp/yarn-${EXECUTOR_NUMBER}"
|
|
|
|
GRADLE_USER_HOME = "/var/tmp/gradle-${EXECUTOR_NUMBER}"
|
2018-08-14 14:09:52 -04:00
|
|
|
}
|
2018-09-25 20:01:48 +03:00
|
|
|
|
2018-08-14 14:09:52 -04:00
|
|
|
stages {
|
|
|
|
stage('Prep') {
|
|
|
|
steps {
|
2019-01-15 15:44:50 +01:00
|
|
|
script {
|
2020-03-06 16:43:04 +01:00
|
|
|
btype = utils.getBuildType()
|
2019-02-05 10:35:14 +01:00
|
|
|
print "Running ${btype} build!"
|
2020-03-06 16:43:04 +01:00
|
|
|
jenkins.abortPreviousRunningBuilds()
|
2019-01-15 15:44:50 +01:00
|
|
|
/* Cleanup and Prep */
|
2020-03-06 16:43:04 +01:00
|
|
|
commonPrep(btype)
|
2019-01-15 15:44:50 +01:00
|
|
|
}
|
2018-08-14 14:09:52 -04:00
|
|
|
}
|
|
|
|
}
|
2019-10-09 18:37:58 +03:00
|
|
|
stage('Parallel Assemble') {
|
2019-06-07 12:48:54 -04:00
|
|
|
parallel {
|
|
|
|
stage('Checks') { stages {
|
|
|
|
stage('Lint') {
|
|
|
|
steps {
|
2020-03-26 14:37:41 +01:00
|
|
|
script {
|
|
|
|
/* We want the build result to be uploaded */
|
|
|
|
catchError(
|
|
|
|
message: 'Linting check failed!',
|
|
|
|
buildResult: 'FAILURE',
|
|
|
|
stageResult: 'FAILURE'
|
|
|
|
) {
|
2019-09-07 14:57:22 +02:00
|
|
|
sh 'make lint'
|
2020-03-26 14:37:41 +01:00
|
|
|
}
|
|
|
|
}
|
2019-06-07 12:48:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Tests') {
|
|
|
|
steps {
|
2019-09-07 14:57:22 +02:00
|
|
|
script {
|
|
|
|
sh 'make test'
|
|
|
|
}
|
2019-06-07 12:48:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
stage('Build') { stages {
|
2019-07-23 16:54:17 -04:00
|
|
|
stage('JSBundle') {
|
2019-06-07 12:48:54 -04:00
|
|
|
steps {
|
2019-07-23 16:54:17 -04:00
|
|
|
script { desktop.buildJSBundle() }
|
2019-06-07 12:48:54 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Compile') {
|
|
|
|
steps {
|
|
|
|
script { desktop.compile() }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Bundle') {
|
|
|
|
steps {
|
|
|
|
script { dmg = desktop.bundleMacOS(btype) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} }
|
2019-02-28 11:56:58 +01:00
|
|
|
}
|
2018-08-14 14:09:52 -04:00
|
|
|
}
|
2019-10-09 18:37:58 +03:00
|
|
|
stage('Parallel Upload') {
|
|
|
|
parallel {
|
|
|
|
stage('Archive') {
|
|
|
|
steps {
|
|
|
|
archiveArtifacts dmg
|
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Upload') {
|
|
|
|
steps {
|
2020-03-06 16:43:04 +01:00
|
|
|
script { env.PKG_URL = s3.uploadArtifact(dmg) }
|
2019-10-09 18:37:58 +03:00
|
|
|
}
|
|
|
|
}
|
2018-12-11 15:27:21 +01:00
|
|
|
}
|
2018-08-14 14:09:52 -04:00
|
|
|
}
|
2018-12-13 10:49:16 +01:00
|
|
|
stage('Cleanup') {
|
|
|
|
steps {
|
2019-06-11 11:43:44 +02:00
|
|
|
sh 'make watchman-clean'
|
2019-02-05 10:35:14 +01:00
|
|
|
sh 'make clean'
|
2018-12-13 10:49:16 +01:00
|
|
|
}
|
|
|
|
}
|
2018-12-11 15:27:21 +01:00
|
|
|
}
|
|
|
|
post {
|
2020-03-06 16:43:04 +01:00
|
|
|
success { script { github.notifyPR(true) } }
|
|
|
|
failure { script { github.notifyPR(false) } }
|
2018-08-14 14:09:52 -04:00
|
|
|
}
|
|
|
|
}
|