forked from ngageoint/opensphere
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
95 lines (80 loc) · 1.85 KB
/
Jenkinsfile
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#!groovy
def err = null
class Global {
static def branchName = null
static def userName = null
static def projName = null
}
node(getLabel()) {
timestamps {
try {
stage('scm')
try {
beforeCheckout()
} catch (NoSuchMethodError e) {
}
checkout scm
try {
afterCheckout()
} catch (NoSuchMethodError e) {
}
stage('npm')
npmInstall()
stage('build')
sh 'npm run build'
stage('test')
try {
test()
} catch (NoSuchMethodError e) {
}
/* stage('docs')
sh 'npm run compile:dossier'
stage('deploy-docs')
try {
deployDocs()
} catch (NoSuchMethodError e) {
} */
stage('package')
dir('dist') {
sh "zip -q -r opensphere-${env.BRANCH_NAME}-${env.BUILD_NUMBER}.zip opensphere"
}
try {
// newer
archiveArtifacts 'dist/*.zip'
} catch (NoSuchMethodError e) {
// older
archive 'dist/*.zip'
}
stage('deploy')
try {
deploy('opensphere')
} catch (NoSuchMethodError e) {
error 'Please define "deploy" through a shared pipeline library for this network'
}
stage('publish')
if (env.BRANCH_NAME == 'master') {
try {
npmPublish()
} catch (NoSuchMethodError e) {
error 'Please define "npmPublish" through a shared pipeline library for this network'
}
}
try {
onSuccess()
} catch (NoSuchMethodError e) {
}
} catch (e) {
currentBuild.result = 'FAILURE'
err = e
} finally {
try {
notifyBuild()
} catch (NoSuchMethodError e) {
error 'Please define "notifyBuild()" through a shared pipeline library for this network'
}
if (err) {
throw err
}
}
}
}