2018-08-21 15:17:25 +00:00
|
|
|
def version() {
|
|
|
|
return readFile("${env.WORKSPACE}/VERSION").trim()
|
|
|
|
}
|
|
|
|
|
2018-08-29 07:43:21 +00:00
|
|
|
def getBuildType() {
|
|
|
|
def jobName = env.JOB_NAME
|
|
|
|
if (jobName.startsWith('status-react/pull requests')) {
|
|
|
|
return 'pr'
|
|
|
|
}
|
|
|
|
if (jobName.startsWith('status-react/nightly')) {
|
|
|
|
return 'nightly'
|
|
|
|
}
|
|
|
|
if (jobName.startsWith('status-react/release')) {
|
|
|
|
return 'release'
|
|
|
|
}
|
|
|
|
return params.BUILD_TYPE
|
|
|
|
}
|
|
|
|
|
|
|
|
def buildBranch(name = null, buildType) {
|
2018-08-28 19:01:30 +00:00
|
|
|
/* need to drop origin/ to match definitions of child jobs */
|
|
|
|
def branchName = env.GIT_BRANCH.replace('origin/', '')
|
2018-08-21 15:17:25 +00:00
|
|
|
/* always pass the BRANCH and BUILD_TYPE params with current branch */
|
2018-08-29 20:29:09 +00:00
|
|
|
def b = build(
|
2018-08-21 15:17:25 +00:00
|
|
|
job: name,
|
2018-08-29 20:29:09 +00:00
|
|
|
/* this allows us to analize the job even after failure */
|
|
|
|
propagate: false,
|
2018-08-21 15:17:25 +00:00
|
|
|
parameters: [
|
2018-08-28 19:01:30 +00:00
|
|
|
[name: 'BRANCH', value: branchName, $class: 'StringParameterValue'],
|
|
|
|
[name: 'BUILD_TYPE', value: buildType, $class: 'StringParameterValue'],
|
2018-08-21 15:17:25 +00:00
|
|
|
])
|
2018-08-29 20:29:09 +00:00
|
|
|
/* BlueOcean seems to not show child-build links */
|
2018-08-30 02:23:26 +00:00
|
|
|
print "Build: ${b.getAbsoluteUrl()} (${b.result})"
|
|
|
|
if (b.result != 'SUCCESS') {
|
|
|
|
error("Build Failed")
|
|
|
|
}
|
2018-08-29 20:29:09 +00:00
|
|
|
return b
|
2018-08-21 15:17:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def copyArts(projectName, buildNo) {
|
|
|
|
copyArtifacts(
|
|
|
|
projectName: projectName,
|
|
|
|
target: 'pkg',
|
|
|
|
flatten: true,
|
|
|
|
selector: specific("${buildNo}")
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2018-08-14 18:09:52 +00:00
|
|
|
def installJSDeps(platform) {
|
|
|
|
def attempt = 1
|
|
|
|
def maxAttempts = 10
|
|
|
|
def installed = false
|
|
|
|
/* prepare environment for specific platform build */
|
|
|
|
sh "scripts/prepare-for-platform.sh ${platform}"
|
|
|
|
while (!installed && attempt <= maxAttempts) {
|
|
|
|
println "#${attempt} attempt to install npm deps"
|
|
|
|
sh 'npm install'
|
|
|
|
installed = fileExists('node_modules/web3/index.js')
|
|
|
|
attemp = attempt + 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
def doGitRebase() {
|
|
|
|
try {
|
|
|
|
sh 'git rebase origin/develop'
|
|
|
|
} catch (e) {
|
|
|
|
sh 'git rebase --abort'
|
|
|
|
throw e
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-23 12:56:19 +00:00
|
|
|
def tagBuild(increment = false) {
|
|
|
|
def opts = (increment ? '--increment' : '')
|
2018-08-14 18:09:52 +00:00
|
|
|
withCredentials([[
|
|
|
|
$class: 'UsernamePasswordMultiBinding',
|
|
|
|
credentialsId: 'status-im-auto',
|
|
|
|
usernameVariable: 'GIT_USER',
|
|
|
|
passwordVariable: 'GIT_PASS'
|
|
|
|
]]) {
|
|
|
|
return sh(
|
|
|
|
returnStdout: true,
|
2018-08-23 12:56:19 +00:00
|
|
|
script: "./scripts/build_no.sh ${opts}"
|
2018-08-14 18:09:52 +00:00
|
|
|
).trim()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-23 12:56:19 +00:00
|
|
|
def getDirPath(path) {
|
|
|
|
return path.tokenize('/')[0..-2].join('/')
|
|
|
|
}
|
|
|
|
|
|
|
|
def getFilename(path) {
|
|
|
|
return path.tokenize('/')[-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
def uploadArtifact(path) {
|
|
|
|
/* defaults for upload */
|
2018-08-14 18:09:52 +00:00
|
|
|
def domain = 'ams3.digitaloceanspaces.com'
|
2018-08-23 12:56:19 +00:00
|
|
|
def bucket = 'status-im'
|
2018-08-14 18:09:52 +00:00
|
|
|
withCredentials([usernamePassword(
|
|
|
|
credentialsId: 'digital-ocean-access-keys',
|
|
|
|
usernameVariable: 'DO_ACCESS_KEY',
|
|
|
|
passwordVariable: 'DO_SECRET_KEY'
|
|
|
|
)]) {
|
|
|
|
sh """
|
|
|
|
s3cmd \\
|
|
|
|
--acl-public \\
|
|
|
|
--host='${domain}' \\
|
|
|
|
--host-bucket='%(bucket)s.${domain}' \\
|
|
|
|
--access_key=${DO_ACCESS_KEY} \\
|
|
|
|
--secret_key=${DO_SECRET_KEY} \\
|
2018-08-23 12:56:19 +00:00
|
|
|
put ${path} s3://${bucket}/
|
2018-08-14 18:09:52 +00:00
|
|
|
"""
|
|
|
|
}
|
2018-08-23 12:56:19 +00:00
|
|
|
return "https://${bucket}.${domain}/${getFilename(path)}"
|
|
|
|
}
|
|
|
|
|
|
|
|
def timestamp() {
|
|
|
|
def now = new Date(currentBuild.timeInMillis)
|
2018-08-30 12:05:41 +00:00
|
|
|
return now.format('yyMMdd-HHmmss', TimeZone.getTimeZone('UTC'))
|
2018-08-23 12:56:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def gitCommit() {
|
|
|
|
return GIT_COMMIT.take(6)
|
|
|
|
}
|
|
|
|
|
|
|
|
def pkgFilename(type, ext) {
|
2018-08-30 12:05:41 +00:00
|
|
|
return "StatusIm-${timestamp()}-${gitCommit()}-${type}.${ext}"
|
2018-08-14 18:09:52 +00:00
|
|
|
}
|
|
|
|
|
2018-08-29 07:43:21 +00:00
|
|
|
|
|
|
|
def githubNotify(apkUrl, e2eUrl, ipaUrl, dmgUrl, appUrl, changeId) {
|
|
|
|
withCredentials([string(credentialsId: 'GIT_HUB_TOKEN', variable: 'githubToken')]) {
|
2018-08-29 18:39:35 +00:00
|
|
|
def message = (
|
|
|
|
"#### :white_check_mark: CI BUILD SUCCESSFUL\\n" +
|
|
|
|
"Jenkins job: [${currentBuild.displayName}](${currentBuild.absoluteUrl})\\n"+
|
|
|
|
"##### Mobile\\n" +
|
|
|
|
"* [Android](${apkUrl}), ([e2e](${e2eUrl}))\\n" +
|
|
|
|
"* [iOS](${ipaUrl})\\n" +
|
|
|
|
"##### Desktop\\n" +
|
|
|
|
"* [MacOS](${dmgUrl})\\n" +
|
|
|
|
"* [AppImage](${appUrl})"
|
|
|
|
)
|
|
|
|
def script = (
|
|
|
|
"curl "+
|
|
|
|
"-u status-im:${githubToken} " +
|
|
|
|
"-H 'Content-Type: application/json' " +
|
|
|
|
"--data '{\"body\": \"${message}\"}' " +
|
|
|
|
"https://api.github.com/repos/status-im/status-react/issues/${changeId}/comments"
|
|
|
|
)
|
2018-08-29 07:43:21 +00:00
|
|
|
def ghOutput = sh(returnStdout: true, script: script)
|
|
|
|
println("Result of github comment curl: " + ghOutput);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-14 18:09:52 +00:00
|
|
|
return this
|