2018-08-14 18:09:52 +00:00
|
|
|
pipeline {
|
2018-11-19 17:37:04 +00:00
|
|
|
agent { label 'macos' }
|
2018-08-14 18:09:52 +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
|
|
|
options {
|
2018-11-13 11:58:34 +00:00
|
|
|
timestamps()
|
2018-10-30 09:38:52 +00:00
|
|
|
/* Prevent Jenkins jobs from running forever */
|
2018-11-20 18:36:11 +00:00
|
|
|
timeout(time: 45, 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
|
|
|
))
|
|
|
|
}
|
2018-09-25 17:01:48 +00:00
|
|
|
|
2018-08-14 18:09:52 +00:00
|
|
|
environment {
|
2019-04-12 14:38:08 +00:00
|
|
|
TARGET_OS = 'ios'
|
2019-03-05 18:00:20 +00:00
|
|
|
CI_ENVIRONMENT = 'jenkins'
|
2018-08-14 18:09:52 +00:00
|
|
|
LANG = 'en_US.UTF-8'
|
|
|
|
LANGUAGE = 'en_US.UTF-8'
|
|
|
|
LC_ALL = 'en_US.UTF-8'
|
2019-03-25 16:35:01 +00:00
|
|
|
NIX_CONF_DIR = "${env.WORKSPACE}/nix"
|
2018-08-14 18:09:52 +00:00
|
|
|
FASTLANE_DISABLE_COLORS=1
|
|
|
|
REALM_DISABLE_ANALYTICS=1
|
2018-09-01 02:36:51 +00:00
|
|
|
BUNDLE_PATH = "${HOME}/.bundle"
|
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 {
|
2019-01-15 14:44:50 +00:00
|
|
|
script {
|
2018-08-14 18:09:52 +00:00
|
|
|
/* Necessary to load methods */
|
|
|
|
mobile = load 'ci/mobile.groovy'
|
2018-08-29 07:43:21 +00:00
|
|
|
cmn = load 'ci/common.groovy'
|
2019-03-22 13:24:58 +00:00
|
|
|
btype = cmn.utils.getBuildType()
|
2019-02-05 09:35:14 +00:00
|
|
|
print "Running ${btype} build!"
|
|
|
|
cmn.ci.abortPreviousRunningBuilds()
|
2019-01-15 14:44:50 +00:00
|
|
|
/* Cleanup and Prep */
|
2019-03-22 13:24:58 +00:00
|
|
|
cmn.prep(btype)
|
2019-01-15 14:44:50 +00:00
|
|
|
}
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-27 15:32:54 +00:00
|
|
|
stage('Lint') {
|
2019-03-05 18:00:20 +00:00
|
|
|
steps {
|
2019-02-28 10:56:58 +00:00
|
|
|
script { cmn.utils.nix_sh('lein cljfmt check') }
|
2019-03-05 18:00:20 +00:00
|
|
|
}
|
2018-08-27 15:32:54 +00:00
|
|
|
}
|
2018-08-14 18:09:52 +00:00
|
|
|
stage('Tests') {
|
2019-03-05 18:00:20 +00:00
|
|
|
steps {
|
2019-02-28 10:56:58 +00:00
|
|
|
script { cmn.utils.nix_sh('lein test-cljs') }
|
2019-03-05 18:00:20 +00:00
|
|
|
}
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
stage('Build') {
|
2019-03-05 18:00:20 +00:00
|
|
|
steps {
|
|
|
|
script { cmn.utils.nix_sh('lein prod-build-ios') }
|
|
|
|
}
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
2018-12-06 10:52:44 +00:00
|
|
|
stage('Bundle') {
|
2019-03-05 18:00:20 +00:00
|
|
|
steps {
|
2019-04-11 11:29:37 +00:00
|
|
|
script { api = mobile.ios.bundle() }
|
2019-03-05 18:00:20 +00:00
|
|
|
}
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
stage('Archive') {
|
|
|
|
steps {
|
2018-12-11 14:27:21 +00:00
|
|
|
archiveArtifacts api
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
stage('Upload') {
|
|
|
|
steps {
|
2018-11-19 17:37:04 +00:00
|
|
|
script {
|
2019-02-05 09:35:14 +00:00
|
|
|
env.PKG_URL = cmn.utils.uploadArtifact(api)
|
2018-12-07 12:14:03 +00:00
|
|
|
/* e2e builds get tested in SauceLabs */
|
2019-02-05 09:35:14 +00:00
|
|
|
if (btype == 'e2e') {
|
2018-12-07 12:14:03 +00:00
|
|
|
env.SAUCE_URL = mobile.ios.uploadToSauceLabs()
|
|
|
|
} else {
|
2019-02-22 20:35:22 +00:00
|
|
|
env.DIAWI_URL = mobile.ios.uploadToDiawi()
|
2018-11-19 17:37:04 +00:00
|
|
|
}
|
|
|
|
}
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-13 09:49:16 +00:00
|
|
|
stage('Cleanup') {
|
|
|
|
steps {
|
2019-02-05 09:35:14 +00:00
|
|
|
sh 'make clean'
|
2018-12-13 09:49:16 +00:00
|
|
|
}
|
|
|
|
}
|
2018-12-11 14:27:21 +00:00
|
|
|
}
|
|
|
|
post {
|
2019-02-05 09:35:14 +00:00
|
|
|
success { script { load('ci/common.groovy').notifyPR(true) } }
|
|
|
|
failure { script { load('ci/common.groovy').notifyPR(false) } }
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
}
|