forked from devopstrainers1/addressbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkins_PG_DEVOPS
47 lines (39 loc) · 906 Bytes
/
Jenkins_PG_DEVOPS
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
pipeline {
agent {
label 'master'
}
tools {
maven 'mymaven'
jdk 'myjava'
}
stages {
stage ('Checkout the code') {
steps{
git branch: 'master', url: 'https://github.com/devopstrainers1/addressbook.git'
}
}
stage ('Code Compile') {
steps{
catchError (buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh """
mvn compile
"""
}
}
}
stage ('test errorcatch') {
steps {
sh """
echo "demo"
"""
}
}
stage ('Packaging') {
steps {
sh """
mvn package
"""
}
}
}
}