2022-07-17 12:37:46 +00:00
|
|
|
library 'status-jenkins-lib@v1.5.0'
|
2020-03-06 15:43:04 +00:00
|
|
|
|
2022-06-28 18:46:54 +00:00
|
|
|
/* Options section can't access functions in objects. */
|
|
|
|
def isPRBuild = utils.isPRBuild()
|
|
|
|
|
2018-08-14 18:09:52 +00:00
|
|
|
pipeline {
|
2022-05-05 18:09:14 +00:00
|
|
|
agent { label 'linux && x86_64 && nix-2.8' }
|
2018-08-14 18:09:52 +00:00
|
|
|
|
|
|
|
options {
|
2018-11-13 11:58:34 +00:00
|
|
|
timestamps()
|
2018-10-30 09:38:52 +00:00
|
|
|
/* Prevent Jenkins jobs from running forever */
|
2021-06-17 13:44:34 +00:00
|
|
|
timeout(time: 30, unit: 'MINUTES')
|
2018-10-30 09:38:52 +00:00
|
|
|
/* Limit builds retained */
|
2018-08-14 18:09:52 +00:00
|
|
|
buildDiscarder(logRotator(
|
2018-12-13 09:49:16 +00:00
|
|
|
numToKeepStr: '10',
|
|
|
|
daysToKeepStr: '20',
|
|
|
|
artifactNumToKeepStr: '10',
|
2018-08-14 18:09:52 +00:00
|
|
|
))
|
2020-05-11 09:04:11 +00:00
|
|
|
/* Allows combined build to copy */
|
2022-07-17 12:37:46 +00:00
|
|
|
copyArtifactPermission('/status-mobile/*')
|
2022-06-28 18:46:54 +00:00
|
|
|
/* Abort old PR builds. */
|
|
|
|
disableConcurrentBuilds(
|
|
|
|
abortPrevious: isPRBuild
|
|
|
|
)
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
2018-09-25 17:01:48 +00:00
|
|
|
|
2018-12-11 11:00:22 +00:00
|
|
|
parameters {
|
2018-12-11 14:27:21 +00:00
|
|
|
string(
|
2018-12-11 11:00:22 +00:00
|
|
|
name: 'BUILD_TYPE',
|
2018-12-11 14:27:21 +00:00
|
|
|
description: 'Specify build type. Values: pr / e2e / nightly / release',
|
2018-12-11 11:00:22 +00:00
|
|
|
defaultValue: 'pr',
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-08-14 18:09:52 +00:00
|
|
|
environment {
|
2019-05-10 15:33:54 +00:00
|
|
|
LANG = "en_US.UTF-8"
|
|
|
|
LC_ALL = "en_US.UTF-8"
|
|
|
|
LANGUAGE = "en_US.UTF-8"
|
2019-11-29 10:20:08 +00:00
|
|
|
TARGET = 'android'
|
2019-07-15 16:34:33 +00:00
|
|
|
BUILD_ENV = 'prod'
|
2019-05-10 15:33:54 +00:00
|
|
|
NIX_CONF_DIR = "${env.WORKSPACE}/nix"
|
2018-08-14 18:09:52 +00:00
|
|
|
FASTLANE_DISABLE_COLORS = 1
|
2019-07-03 19:00:51 +00:00
|
|
|
/* coverage report identification */
|
|
|
|
COVERALLS_SERVICE_NAME = "jenkins"
|
|
|
|
COVERALLS_SERVICE_JOB_ID = "${JOB_NAME}#${BUILD_NUMBER}"
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
2018-09-25 17:01:48 +00:00
|
|
|
|
2018-08-14 18:09:52 +00:00
|
|
|
stages {
|
|
|
|
stage('Prep') {
|
|
|
|
steps {
|
|
|
|
script {
|
2020-03-06 15:43:04 +00:00
|
|
|
btype = utils.getBuildType()
|
2019-02-05 09:35:14 +00:00
|
|
|
print "Running ${btype} build!"
|
2019-01-15 14:44:50 +00:00
|
|
|
/* Cleanup and Prep */
|
2020-03-06 15:43:04 +00:00
|
|
|
commonPrep(btype)
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-09 15:37:58 +00:00
|
|
|
stage('Parallel Assemble') {
|
2019-06-07 16:48:54 +00:00
|
|
|
parallel {
|
|
|
|
stage('Checks') { stages {
|
|
|
|
stage('Lint') {
|
|
|
|
steps {
|
2020-03-26 13:37:41 +00:00
|
|
|
script {
|
|
|
|
/* We want the build result to be uploaded */
|
|
|
|
catchError(
|
|
|
|
message: 'Linting check failed!',
|
|
|
|
buildResult: 'FAILURE',
|
|
|
|
stageResult: 'FAILURE'
|
|
|
|
) {
|
2019-09-07 12:57:22 +00:00
|
|
|
sh 'make lint'
|
2020-03-26 13:37:41 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-07 16:48:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Tests') {
|
|
|
|
steps {
|
2019-09-07 12:57:22 +00:00
|
|
|
script {
|
|
|
|
sh 'make test'
|
|
|
|
}
|
2019-06-07 16:48:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} }
|
|
|
|
stage('Build') { stages {
|
|
|
|
stage('Bundle') {
|
|
|
|
steps {
|
2019-09-13 17:16:13 +00:00
|
|
|
script { apks = android.bundle() }
|
2019-06-07 16:48:54 +00:00
|
|
|
}
|
|
|
|
}
|
2022-04-22 08:20:01 +00:00
|
|
|
stage('Sign') {
|
|
|
|
steps {
|
|
|
|
script { apks = android.sign(apks) }
|
|
|
|
}
|
|
|
|
}
|
2019-06-07 16:48:54 +00:00
|
|
|
} }
|
2019-01-18 00:31:07 +00:00
|
|
|
}
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
2019-10-09 15:37:58 +00:00
|
|
|
stage('Parallel Upload') {
|
|
|
|
parallel {
|
|
|
|
stage('Archive') {
|
|
|
|
steps { script {
|
|
|
|
apks.each { archiveArtifacts it }
|
|
|
|
} }
|
|
|
|
}
|
|
|
|
stage('Upload') {
|
|
|
|
steps {
|
|
|
|
script {
|
2020-03-06 15:43:04 +00:00
|
|
|
def urls = apks.collect { s3.uploadArtifact(it) }
|
2019-10-09 15:37:58 +00:00
|
|
|
/* return only the universal APK */
|
|
|
|
if (urls.size() > 1) {
|
|
|
|
env.PKG_URL = urls.find { it.contains('universal') }
|
|
|
|
} else { /* if no universal is available pick first */
|
|
|
|
env.PKG_URL = urls.first()
|
|
|
|
}
|
2020-10-01 13:01:28 +00:00
|
|
|
jenkins.setBuildDesc(APK: env.PKG_URL)
|
|
|
|
/* e2e builds get tested in SauceLabs */
|
2020-07-08 14:08:51 +00:00
|
|
|
if (utils.isE2EBuild()) {
|
|
|
|
env.SAUCE_URL = android.uploadToSauceLabs()
|
2019-10-09 15:37:58 +00:00
|
|
|
}
|
2020-10-01 13:01:28 +00:00
|
|
|
if (utils.isNightlyBuild()) {
|
|
|
|
env.DIAWI_URL = android.uploadToDiawi()
|
|
|
|
}
|
2019-10-09 15:37:58 +00:00
|
|
|
}
|
2018-09-25 17:01:48 +00:00
|
|
|
}
|
2018-08-27 15:32:54 +00:00
|
|
|
}
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-13 09:49:16 +00:00
|
|
|
stage('Cleanup') {
|
2019-10-09 15:37:58 +00:00
|
|
|
steps {
|
2020-12-21 08:20:38 +00:00
|
|
|
sh 'make purge'
|
2019-10-09 15:37:58 +00:00
|
|
|
}
|
2018-12-13 09:49:16 +00:00
|
|
|
}
|
2018-12-11 14:27:21 +00:00
|
|
|
}
|
|
|
|
post {
|
2020-03-06 15:43:04 +00:00
|
|
|
success { script { github.notifyPR(true) } }
|
|
|
|
failure { script { github.notifyPR(false) } }
|
2019-07-23 06:19:48 +00:00
|
|
|
always { sh 'make _fix-node-perms' }
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
}
|