import groovy.json.JsonBuilder /* Libraries -----------------------------------------------------------------*/ gh = load 'ci/github.groovy' ci = load 'ci/jenkins.groovy' gh = load 'ci/github.groovy' nix = load 'ci/nix.groovy' utils = load 'ci/utils.groovy' ghcmgr = load 'ci/ghcmgr.groovy' /* Small Helpers -------------------------------------------------------------*/ def pkgUrl(build) { return utils.getEnv(build, 'PKG_URL') } def updateBucketJSON(urls, fileName) { /* latest.json has slightly different key names */ def content = [ DIAWI: urls.Diawi, APK: urls.Apk, IOS: urls.iOS, APP: urls.App, MAC: urls.Mac, WIN: urls.Win, SHA: urls.SHA ] def filePath = "${pwd()}/pkg/${fileName}" /* it might not exist */ sh 'mkdir -p pkg' def contentJson = new JsonBuilder(content).toPrettyString() println "${fileName}:\n${contentJson}" new File(filePath).write(contentJson) return utils.uploadArtifact(filePath) } def notifyPR(success) { if (utils.changeId() == null) { return } try { ghcmgr.postBuild(success) } catch (ex) { /* fallback to posting directly to GitHub */ println "Failed to use GHCMGR: ${ex}" switch (success) { case true: gh.notifyPRSuccess(); break case false: gh.notifyPRFailure(); break } } } def prep(type = 'nightly') { /* build/downloads all nix deps in advance */ nix.prepEnv() /* rebase unless this is a release build */ utils.doGitRebase() /* ensure that we start from a known state */ sh 'make clean' /* pick right .env and update from params */ utils.updateEnv(type) if (env.TARGET_OS == 'android' || env.TARGET_OS == 'ios') { /* Run at start to void mismatched numbers */ utils.genBuildNumber() } if (env.TARGET_OS == 'ios') { /* install ruby dependencies */ nix.shell 'bundle install --gemfile=fastlane/Gemfile --quiet' } def prepareTarget=env.TARGET_OS if (env.TARGET_OS == 'macos' || env.TARGET_OS == 'linux' || env.TARGET_OS == 'windows') { prepareTarget='desktop' } /* node deps, pods, and status-go download */ utils.nix.shell("scripts/prepare-for-platform.sh ${prepareTarget}", pure: false) sh("cp -R translations status-modules/translations && cp -R status-modules node_modules/status-modules") } return this