-
Notifications
You must be signed in to change notification settings - Fork 26
/
Jenkinsfile
78 lines (64 loc) · 1.63 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
node('testing') {
stage('Initialize') {
echo 'Initializing...'
def node = tool name: 'Node-7.4.0', type: 'jenkins.plugins.nodejs.tools.NodeJSInstallation'
env.PATH = "${node}/bin:${env.PATH}"
}
stage('Checkout') {
echo 'Getting source code...'
checkout scm
}
stage('Build') {
echo 'Building dependencies...'
sh 'npm i'
}
stage('Test') {
echo 'Testing...'
sh 'npm test'
}
stage('Publish') {
echo 'Publishing Test Coverage...'
publishHTML (target: [
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'coverage/lcov-report',
reportFiles: 'index.html',
reportName: "Application Test Coverage"
])
}
}
node('staging') {
stage('Initialize'){
echo 'Initializing...'
def node = tool name: 'Node-7.4.0', type: 'jenkins.plugins.nodejs.tools.NodeJSInstallation'
env.PATH = "${node}/bin:${env.PATH}"
sh "node -v"
// set environment variables
env.VARIABLE_1="10"
env.VARIABLE_2="7"
}
stage('Checkout') {
echo 'Getting source code...'
checkout scm
}
stage('PM2 Install') {
echo 'Installing PM2 to run application as daemon...'
sh "npm install pm2 -g"
}
stage('Build') {
echo 'Building dependencies...'
sh 'npm i'
}
stage('Test') {
echo 'Testing...'
sh 'npm test'
}
stage('Run Application') {
echo 'Stopping old process to run new process...'
sh '''
npm run pm2-stop
npm run pm2-start
'''
}
}