forked from Sunbird-Ed/SunbirdEd-portal
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jenkinsfile.desktop
53 lines (52 loc) · 2.24 KB
/
Jenkinsfile.desktop
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
@Library('deploy-conf') _
node() {
try {
String ANSI_GREEN = "\u001B[32m"
String ANSI_NORMAL = "\u001B[0m"
String ANSI_BOLD = "\u001B[1m"
String ANSI_RED = "\u001B[31m"
String ANSI_YELLOW = "\u001B[33m"
ansiColor('xterm') {
stage('Checkout') {
cleanWs()
checkout scm
commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim()
artifact_version = sh(script: "echo " + params.github_release_tag.split('/')[-1] + "_" + commit_hash + "_" + env.BUILD_NUMBER, returnStdout: true).trim()
echo "artifact_version: "+ artifact_version
}
}
stage('Build') {
sh """
cd src/desktop/
docker run -d --name offline_build -w /offline node:14.19.0-stretch sleep infinity
docker cp .. offline_build:/offline/
docker exec offline_build bash -x /offline/src/desktop/build.sh
docker cp offline_build:/offline/src/desktop/app_dist.tar.gz ../../
docker rm offline_build --force
"""
}
stage('Archive artifacts'){
sh """
mkdir -p offline_desktop_artifacts
cp app_dist.tar.gz offline_desktop_artifacts
zip -j offline_desktop_artifacts.zip:${artifact_version} offline_desktop_artifacts/*
"""
archiveArtifacts artifacts: "offline_desktop_artifacts.zip:${artifact_version}", fingerprint: true, onlyIfSuccessful: true
sh """echo {\\"artifact_name\\" : \\"offline_desktop_artifacts.zip\\", \\"artifact_version\\" : \\"${artifact_version}\\", \\"node_name\\" : \\"${env.NODE_NAME}\\"} > metadata.json"""
archiveArtifacts artifacts: 'metadata.json', onlyIfSuccessful: true
currentBuild.result = "SUCCESS"
currentBuild.description = "Artifact: ${artifact_version}, Public: ${params.github_release_tag}"
}
}
catch (err) {
sh """
docker rm offline_build --force
"""
currentBuild.result = "FAILURE"
throw err
}
finally {
slack_notify(currentBuild.result)
email_notify()
}
}