-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jenkinsfile
95 lines (63 loc) · 1.83 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
def artserver = Artifactory.server('repository.terradue.com')
def buildInfo = Artifactory.newBuildInfo()
buildInfo.env.capture = true
pipeline {
options {
// Kepp 5 builds history
buildDiscarder(logRotator(numToKeepStr: '5'))
}
agent {
node {
// community builder
label 'ci-community-docker'
}
}
stages {
// stage('Package ALL') {
// steps {
// withMaven(
// // Maven installation declared in the Jenkins "Global Tool Configuration"
// maven: 'apache-maven-3.0.5' ) {
// sh 'mvn -X -B clean deploy -Dmission=s1;mvn -X -B clean;mvn -X -B clean deploy -Dmission=envisat'
// }
// }
// }
// Let's go!
stage('Package S1') {
steps {
withMaven(
// Maven installation declared in the Jenkins "Global Tool Configuration"
maven: 'apache-maven-3.0.5' ) {
sh 'mvn -X -B clean deploy -Dmission=s1'
}
}
}
stage('Package ENVISAT') {
steps {
withMaven(
//Maven installation declared in the Jenkins "Global Tool Configuration"
maven: 'apache-maven-3.0.5' ) {
sh 'mvn -X -B clean deploy -Dmission=envisat'
}
}
}
// stage('Package RS2') {
// steps {
// withMaven(
// Maven installation declared in the Jenkins "Global Tool Configuration"
// maven: 'apache-maven-3.0.5' ) {
// sh 'mvn -B deploy -Dmission=RS2'
// }
// }
// }
// stage('Package TSX') {
// steps {
// withMaven(
// Maven installation declared in the Jenkins "Global Tool Configuration"
// maven: 'apache-maven-3.0.5' ) {
// sh 'mvn -B deploy -Dmission=TSX'
// }
// }
//}
}
}