forked from daos-stack/raft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
210 lines (208 loc) · 9.47 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
#!/usr/bin/groovy
/* Copyright (C) 2019 Intel Corporation
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted for any purpose (including commercial purposes)
* provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions, and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions, and the following disclaimer in the
* documentation and/or materials provided with the distribution.
*
* 3. In addition, redistributions of modified forms of the source or binary
* code must carry prominent notices stating that the original code was
* changed and the date of the change.
*
* 4. All publications or advertising materials mentioning features or use of
* this software are asked, but not required, to acknowledge that it was
* developed by Intel Corporation and credit the contributors.
*
* 5. Neither the name of Intel Corporation, nor the name of any Contributor
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// To use a test branch (i.e. PR) until it lands to master
// I.e. for testing library changes
//@Library(value="pipeline-lib@your_branch") _
pipeline {
agent none
stages {
stage('Cancel Previous Builds') {
when { changeRequest() }
steps {
cancelPreviousBuilds()
}
}
stage('Lint') {
stages {
stage('RPM Lint') {
agent {
dockerfile {
filename 'Dockerfile.centos.7'
label 'docker_runner'
additionalBuildArgs '--build-arg UID=$(id -u)'
args '--group-add mock --cap-add=SYS_ADMIN --privileged=true'
}
}
steps {
sh 'rm -f raft.spec; make rpmlint'
}
}
}
}
stage('Build') {
parallel {
stage('Build on CentOS 7') {
agent {
dockerfile {
filename 'Dockerfile.centos.7'
label 'docker_runner'
additionalBuildArgs '--build-arg UID=$(id -u) --build-arg JENKINS_URL=' +
env.JENKINS_URL
args '--group-add mock --cap-add=SYS_ADMIN --privileged=true'
}
}
steps {
sh '''rm -rf artifacts/centos7/
mkdir -p artifacts/centos7/
if make srpm; then
if make mockbuild; then
(cd /var/lib/mock/epel-7-x86_64/result/ &&
cp -r . $OLDPWD/artifacts/centos7/)
createrepo artifacts/centos7/
else
rc=\${PIPESTATUS[0]}
(cd /var/lib/mock/epel-7-x86_64/result/ &&
cp -r . $OLDPWD/artifacts/centos7/)
cp -af _topdir/SRPMS artifacts/centos7/
exit \$rc
fi
else
exit \${PIPESTATUS[0]}
fi'''
}
post {
always {
archiveArtifacts artifacts: 'artifacts/centos7/**'
}
}
}
stage('Build on SLES 12.3') {
when { beforeAgent true
environment name: 'SLES12_3_DOCKER', value: 'true' }
agent {
dockerfile {
filename 'Dockerfile.sles.12.3'
label 'docker_runner'
additionalBuildArgs '--build-arg UID=$(id -u) ' +
"--build-arg CACHEBUST=${currentBuild.startTimeInMillis}"
}
}
steps {
sh '''rm -rf artifacts/sles12.3/
mkdir -p artifacts/sles12.3/
rm -rf _topdir/SRPMS
if make srpm; then
rm -rf _topdir/RPMS
if make rpms; then
ln _topdir/{RPMS/*,SRPMS}/* artifacts/sles12.3/
createrepo artifacts/sles12.3/
else
exit \${PIPESTATUS[0]}
fi
else
exit \${PIPESTATUS[0]}
fi'''
}
post {
always {
archiveArtifacts artifacts: 'artifacts/sles12.3/**'
}
}
}
stage('Build on Leap 42.3') {
agent {
dockerfile {
filename 'Dockerfile.leap.42.3'
label 'docker_runner'
additionalBuildArgs '--build-arg UID=$(id -u) ' +
"--build-arg CACHEBUST=${currentBuild.startTimeInMillis}"
}
}
steps {
sh '''rm -rf artifacts/leap42.3/
mkdir -p artifacts/leap42.3/
rm -rf _topdir/SRPMS
if make srpm; then
rm -rf _topdir/RPMS
if make rpms; then
ln _topdir/{RPMS/*,SRPMS}/* artifacts/leap42.3/
createrepo artifacts/leap42.3/
else
exit \${PIPESTATUS[0]}
fi
else
exit \${PIPESTATUS[0]}
fi'''
}
post {
always {
archiveArtifacts artifacts: 'artifacts/leap42.3/**'
}
}
}
stage('Build on Ubuntu 18.04') {
agent {
dockerfile {
filename 'Dockerfile.ubuntu.18.04'
label 'docker_runner'
additionalBuildArgs '--build-arg UID=$(id -u) ' +
"--build-arg CACHEBUST=${currentBuild.startTimeInMillis}"
}
}
steps {
sh '''rm -rf artifacts/ubuntu18.04/
mkdir -p artifacts/ubuntu18.04/
: "${DEBEMAIL:="$env.DAOS_EMAIL"}"
: "${DEBFULLNAME:="$env.DAOS_FULLNAME"}"
export DEBEMAIL
export DEBFULLNAME
make debs'''
}
post {
success {
sh '''ln -v \
_topdir/BUILD/*{.build,.changes,.deb,.dsc,.gz,.xz} \
artifacts/ubuntu18.04/
pushd artifacts/ubuntu18.04/
dpkg-scanpackages . /dev/null | \
gzip -9c > Packages.gz
popd'''
archiveArtifacts artifacts: 'artifacts/ubuntu18.04/**'
}
failure {
sh script: "cat _topdir/BUILD/*.build",
returnStatus: true
archiveArtifacts artifacts: 'artifacts/ubuntu18.04/**'
}
}
}
}
}
}
}