-
Notifications
You must be signed in to change notification settings - Fork 80
/
auto_build_deploy
66 lines (61 loc) · 3.01 KB
/
auto_build_deploy
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
54
55
56
57
58
59
60
61
62
63
64
65
66
@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') {
tag_name = env.JOB_NAME.split("/")[-1]
pre_checks()
cleanWs()
def scmVars = checkout scm
checkout scm: [$class: 'GitSCM', branches: [[name: "refs/tags/$tag_name"]], userRemoteConfigs: [[url: scmVars.GIT_URL]]]
commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim()
artifact_version = tag_name
branch_name = tag_name.split('_')[0].split('\\.')[0] + "." + tag_name.split('_')[0].split('\\.')[1]
}
echo "artifact_version: " + artifact_version
// stage Build
sh """#!/bin/bash
export NVM_DIR="\$HOME/.nvm"
[ -s "\$NVM_DIR/nvm.sh" ] && source "\$NVM_DIR/nvm.sh" # This loads nvm
[ -s "\$NVM_DIR/bash_completion" ] && source "\$NVM_DIR/bash_completion" # This loads nvm bash_completion
nvm install 10.16.3
export player_version_number=${branch_name}
export build_number=${commit_hash}
export filter_plugins=false # For the preview build generation dont split the plugins.
cd player
npm install
npm run build-preview ekstep
grunt compress:preview
grunt generate-libs
#grunt renderer-test
#grunt build-jsdoc
"""
// stage ArchiveArtifacts
sh """
mkdir CR_Preview_Artifacts
cp player/preview.zip CR_Preview_Artifacts
#cp player/libs.zip CR_Preview_Artifacts
zip -j CR_Preview_Artifacts.zip:${artifact_version} CR_Preview_Artifacts/*
"""
archiveArtifacts "CR_Preview_Artifacts.zip:${artifact_version}"
sh """echo {\\"artifact_name\\" : \\"CR_Preview_Artifacts.zip\\", \\"artifact_version\\" : \\"${artifact_version}\\", \\"node_name\\" : \\"${env.NODE_NAME}\\"} > metadata.json"""
archiveArtifacts artifacts: 'metadata.json', onlyIfSuccessful: true
currentBuild.description = "${artifact_version}"
}
currentBuild.result = "SUCCESS"
slack_notify(currentBuild.result, tag_name)
email_notify()
auto_build_deploy()
}
catch (err) {
currentBuild.result = "FAILURE"
slack_notify(currentBuild.result, tag_name)
email_notify()
throw err
}
}