-
Notifications
You must be signed in to change notification settings - Fork 15
/
auto_build_deploy
52 lines (48 loc) · 1.97 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
@Library('deploy-conf') _
node('build-slave') {
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()
if (!env.hub_org) {
println(ANSI_BOLD + ANSI_RED + "Uh Oh! Please set a Jenkins environment variable named hub_org with value as registery/sunbidrded" + ANSI_NORMAL)
error 'Please resolve the errors and rerun..'
}
else
cleanWs()
def scmVars = checkout scm
checkout scm: [$class: 'GitSCM', branches: [[name: "refs/tags/$tag_name"]], userRemoteConfigs: [[url: scmVars.GIT_URL]]]
build_tag = tag_name + "_" + env.BUILD_NUMBER
commit_hash = sh(script: 'git rev-parse --short HEAD', returnStdout: true).trim()
artifact_version = tag_name + "_" + commit_hash
echo "build_tag: " + build_tag
// stage('Build')
env.NODE_ENV = "build"
sh("git clone https://github.com/NodeBB/NodeBB.git -b v1.18.6")
sh("cp Dockerfile NodeBB")
sh("cp build.sh NodeBB")
print "Environment will be : ${env.NODE_ENV}"
sh('chmod 777 NodeBB/build.sh')
sh("bash ./NodeBB/build.sh ${build_tag}_v1.18.6 ${env.NODE_NAME} ${hub_org}")
// stage('ArchiveArtifacts')
archiveArtifacts "metadata.json"
currentBuild.description = "${build_tag}"
}
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
}
}