128 lines
3.4 KiB
Groovy
128 lines
3.4 KiB
Groovy
nix = load 'ci/nix.groovy'
|
|
utils = load 'ci/utils.groovy'
|
|
|
|
def bundle() {
|
|
def btype = utils.getBuildType()
|
|
/* Disable Gradle Daemon https://stackoverflow.com/questions/38710327/jenkins-builds-fail-using-the-gradle-daemon */
|
|
def gradleOpt = "-PbuildUrl='${currentBuild.absoluteUrl}' --console plain "
|
|
def target = "release"
|
|
/* we don't need x86 for any builds except e2e */
|
|
env.NDK_ABI_FILTERS="armeabi-v7a;arm64-v8a"
|
|
|
|
switch (btype) {
|
|
case 'e2e':
|
|
env.NDK_ABI_FILTERS="x86"; break
|
|
case 'release':
|
|
gradleOpt += "-PreleaseVersion='${utils.getVersion()}'"
|
|
}
|
|
|
|
// The Nix script cannot access the user home directory, so best to copy the file to the Nix store and pass that to the Nix script
|
|
withCredentials([
|
|
string(
|
|
credentialsId: 'android-keystore-pass',
|
|
variable: 'STATUS_RELEASE_STORE_PASSWORD'
|
|
),
|
|
usernamePassword(
|
|
credentialsId: 'android-keystore-key-pass',
|
|
usernameVariable: 'STATUS_RELEASE_KEY_ALIAS',
|
|
passwordVariable: 'STATUS_RELEASE_KEY_PASSWORD'
|
|
)
|
|
]) {
|
|
nix.build(
|
|
args: [
|
|
'gradle-opts': gradleOpt,
|
|
'build-number': utils.readBuildNumber(),
|
|
'build-type': btype
|
|
],
|
|
safeEnv: [
|
|
'STATUS_RELEASE_KEY_ALIAS',
|
|
'STATUS_RELEASE_STORE_PASSWORD',
|
|
'STATUS_RELEASE_KEY_PASSWORD'
|
|
],
|
|
keep: [
|
|
'NDK_ABI_FILTERS',
|
|
'STATUS_RELEASE_STORE_FILE'
|
|
],
|
|
sbox: [
|
|
env.STATUS_RELEASE_STORE_FILE
|
|
],
|
|
attr: 'targets.mobile.android.release',
|
|
link: false
|
|
)
|
|
}
|
|
/* because nix-build was run in `android` dir that's where `result` is */
|
|
def outApk = "result/app.apk"
|
|
def pkg = utils.pkgFilename(btype, 'apk')
|
|
/* rename for upload */
|
|
sh "cp ${outApk} ${pkg}"
|
|
/* necessary for Fastlane */
|
|
env.APK_PATH = pkg
|
|
return pkg
|
|
}
|
|
|
|
def uploadToPlayStore(type = 'nightly') {
|
|
withCredentials([
|
|
string(credentialsId: "SUPPLY_JSON_KEY_DATA", variable: 'GOOGLE_PLAY_JSON_KEY'),
|
|
]) {
|
|
nix.shell(
|
|
"fastlane android ${type}",
|
|
attr: 'targets.mobile.fastlane.shell',
|
|
keep: ['FASTLANE_DISABLE_COLORS', 'GOOGLE_PLAY_JSON_KEY']
|
|
)
|
|
}
|
|
}
|
|
|
|
def uploadToSauceLabs() {
|
|
def changeId = utils.changeId()
|
|
if (changeId != null) {
|
|
env.SAUCE_LABS_NAME = "${changeId}.apk"
|
|
} else {
|
|
def pkg = utils.pkgFilename(utils.getBuildType(), 'apk')
|
|
env.SAUCE_LABS_NAME = "${pkg}"
|
|
}
|
|
withCredentials([
|
|
usernamePassword(
|
|
credentialsId: 'sauce-labs-api',
|
|
usernameVariable: 'SAUCE_USERNAME',
|
|
passwordVariable: 'SAUCE_ACCESS_KEY'
|
|
),
|
|
]) {
|
|
nix.shell(
|
|
'fastlane android saucelabs',
|
|
attr: 'targets.mobile.fastlane.shell',
|
|
keep: [
|
|
'FASTLANE_DISABLE_COLORS', 'APK_PATH',
|
|
'SAUCE_ACCESS_KEY', 'SAUCE_USERNAME', 'SAUCE_LABS_NAME'
|
|
]
|
|
)
|
|
}
|
|
return env.SAUCE_LABS_NAME
|
|
}
|
|
|
|
def uploadToDiawi() {
|
|
withCredentials([
|
|
string(credentialsId: 'diawi-token', variable: 'DIAWI_TOKEN'),
|
|
]) {
|
|
nix.shell(
|
|
'fastlane android upload_diawi',
|
|
attr: 'targets.mobile.fastlane.shell',
|
|
keep: ['FASTLANE_DISABLE_COLORS', 'APK_PATH', 'DIAWI_TOKEN']
|
|
)
|
|
}
|
|
diawiUrl = readFile "${env.WORKSPACE}/fastlane/diawi.out"
|
|
return diawiUrl
|
|
}
|
|
|
|
def coverage() {
|
|
withCredentials([
|
|
string(credentialsId: 'coveralls-status-react-token', variable: 'COVERALLS_REPO_TOKEN'),
|
|
]) {
|
|
nix.shell(
|
|
'make coverage',
|
|
keep: ['COVERALLS_REPO_TOKEN', 'COVERALLS_SERVICE_NAME', 'COVERALLS_SERVICE_JOB_ID']
|
|
)
|
|
}
|
|
}
|
|
|
|
return this
|