-
Notifications
You must be signed in to change notification settings - Fork 3
/
Jenkinsfile
47 lines (47 loc) · 1.14 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
pipeline {
agent any
// The options directive is for configuration that applies to the whole job.
options {
// gitLabConnection('Git-t')
// gitlabCommitStatus(name: 'jenkins')
// we don't fill up our storage!
buildDiscarder(logRotator(numToKeepStr:'10'))
// And we'd really like to be sure that this build doesn't hang forever, so
// let's time it out after an hour.
timeout(time: 5, unit: 'MINUTES')
} //options
stages {
stage('Build') {
steps {
echo 'Building with maven '
sh '''
mvn compile
'''
}
} // stage build
stage('Test') {
steps {
echo 'Testing with maven '
sh '''
mvn test
'''
} //Steps
post {
success {
junit 'target/surefire-reports/**/*.xml'
}
} //post
} // stage Test
} //Stages
post
{
success
{
echo 'OK '
}
failure
{
echo 'Fail'
}
} //post
} // Pipeline