-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
70 lines (69 loc) · 1.52 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
pipeline {
agent {
node {
label 'agent1'
}
}
triggers {
pollSCM '*/5 * * * *'
}
stages {
stage('Dependencies') {
steps {
echo "Building.."
bat """
npm install
"""
}
}
stage('Building') {
steps {
echo "Testing.."
bat """
npm run build
"""
}
}
stage('Test') {
steps {
echo "Testing.."
bat """
"""
}
}
stage('Deploy') {
steps {
echo 'Deliver....'
bat """
echo "doing delivery stuff.."
cd dist
xcopy *.* "C:\\Sites\\metatags_web" /s /e /y
"""
}
}
stage('Running') {
steps {
echo "running.."
bat """
REM cd "C:\\Sites\\PersonalSiteApi"
REM start node app.js
REM call run.bat
REM Exit with success code 0
REM exit /b 0
"""
}
}
}
post {
success {
echo "running.."
bat """
REM cd "C:\\Sites\\PersonalSiteApi"
REM node app.js
REM call run.bat
REM Exit with success code 0
exit /b 0
"""
}
}
}