-
Notifications
You must be signed in to change notification settings - Fork 12
/
Jenkinsfile
234 lines (215 loc) · 5.68 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
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
pipeline {
agent { label 'jenkinsfile' }
triggers {
pollSCM('H/10 * * * *')
}
options {
disableConcurrentBuilds()
buildDiscarder(logRotator(numToKeepStr: '50'))
timestamps()
}
stages {
stage('Build_MPI_ON') {
steps {
echo "MPI ON :::: BUILD"
sh '''#!/bin/bash -le
module purge
module load ecrc-extras
module load mkl/2020.0.166
module load gcc/10.2.0
module load cmake/3.19.2
module load hwloc/2.4.0-gcc-10.2.0
module load openmpi/4.1.0-gcc-10.2.0
module load starpu/1.3.9-gcc-10.2.0-mkl-openmpi-4.1.0
module list
# BASH verbose mode
set -x
HICMADEVDIR=$PWD
INSTALLDIR=$PWD/dependencies-prefix
mkdir -p $INSTALLDIR
rm -rf $INSTALLDIR/*
export PKG_CONFIG_PATH=$INSTALLDIR/lib/pkgconfig:$PKG_CONFIG_PATH
# STARS-H
cd $HICMADEVDIR
cd stars-h
git log -1
ls -l
rm -rf build
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALLDIR -DMPI=OFF -DOPENMP=OFF -DSTARPU=OFF -DGSL=OFF
make clean
make -j 4
make install
# HCORE
cd $HICMADEVDIR
cd hcore
git log -1
ls -l
rm -rf build
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALLDIR
make clean
make -j 4
make install
# HICMA
cd $HICMADEVDIR
git log -1
ls -l
rm -rf build
mkdir -p build/installdir
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$PWD/installdir -DHICMA_USE_MPI=ON
make clean
make -j 4
make install
export PKG_CONFIG_PATH=$PWD/installdir/lib/pkgconfig:$PKG_CONFIG_PATH
'''
stash name: "build-mpion", includes: "build/**"
}
}
stage('Build_MPI_OFF') {
steps {
echo "MPI OFF :::: BUILD"
sh '''#!/bin/bash -le
module purge
module load ecrc-extras
module load mkl/2020.0.166
module load gcc/10.2.0
module load cmake/3.19.2
module load hwloc/2.4.0-gcc-10.2.0
module load openmpi/4.1.0-gcc-10.2.0
module load starpu/1.3.9-gcc-10.2.0-mkl-openmpi-4.1.0
module list
# BASH verbose mode
set -x
HICMADEVDIR=$PWD
INSTALLDIR=$PWD/dependencies-prefix
mkdir -p $INSTALLDIR
rm -rf $INSTALLDIR/*
export PKG_CONFIG_PATH=$INSTALLDIR/lib/pkgconfig:$PKG_CONFIG_PATH
# STARS-H
cd stars-h
git log -1
ls -l
rm -rf build
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALLDIR -DMPI=OFF -DOPENMP=OFF -DSTARPU=OFF -DGSL=OFF
make clean
make -j 4
make install
# HCORE
cd $HICMADEVDIR
cd hcore
git log -1
ls -l
rm -rf build
mkdir -p build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALLDIR
make clean
make -j 4
make install
# HICMA
cd $HICMADEVDIR
git log -1
ls -l
rm -rf build
mkdir -p build/installdir
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=$PWD/installdir -DHICMA_USE_MPI=OFF
make clean
make -j 4
make install
export PKG_CONFIG_PATH=$PWD/installdir/lib/pkgconfig:$PKG_CONFIG_PATH
'''
stash name: "build-mpioff", includes: "build/**"
}
}
stage('Test_MPI_OFF') {
steps {
unstash 'build-mpioff'
echo "MPI OFF :::: TESTS"
sh '''#!/bin/bash -le
module purge
module load ecrc-extras
module load mkl/2020.0.166
module load gcc/10.2.0
module load cmake/3.19.2
module load hwloc/2.4.0-gcc-10.2.0
module load openmpi/4.1.0-gcc-10.2.0
module load starpu/1.3.9-gcc-10.2.0-mkl-openmpi-4.1.0
module list
cd build
rm -rf Testing
ctest -T Test --no-compress-output -V
'''
}
}
stage('Test_MPI_ON') {
steps {
unstash 'build-mpion'
echo "MPI ON :::: TESTS"
sh '''#!/bin/bash -le
module purge
module load ecrc-extras
module load mkl/2020.0.166
module load gcc/10.2.0
module load cmake/3.19.2
module load hwloc/2.4.0-gcc-10.2.0
module load openmpi/4.1.0-gcc-10.2.0
module load starpu/1.3.9-gcc-10.2.0-mkl-openmpi-4.1.0
module list
cd build
rm -rf Testing
ctest -T Test --no-compress-output -V
'''
}
}
stage('Documentation') {
steps {
unstash 'build-mpion'
sh '''#!/bin/bash -el
module purge
module load ecrc-extras
module load mkl/2020.0.166
module load gcc/10.2.0
module load cmake/3.19.2
module load hwloc/2.4.0-gcc-10.2.0
module load openmpi/4.1.0-gcc-10.2.0
module load starpu/1.3.9-gcc-10.2.0-mkl-openmpi-4.1.0
module list
cd $WORKSPACE/build
make docs
'''
sh '''#!/bin/bash -ex
cd $WORKSPACE
rm -rf cppcheckhtml
cppcheck --enable=all --xml --xml-version=2 aux/ compute/ control/ hcore/ include/ runtime/ testing/ timing/ -I include/ 2> cppcheck.xml
cppcheck-htmlreport --source-encoding="iso8859-1" --title="HiCMA" --source-dir=. --report-dir=cppcheckhtml --file=cppcheck.xml
'''
publishHTML( target: [allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'build/docs/build/html', reportFiles: 'index.html', reportName: 'Doxygen Documentation', reportTitles: ''] )
publishHTML( target: [allowMissing: false, alwaysLinkToLastBuild: false, keepAll: false, reportDir: 'cppcheckhtml', reportFiles: 'index.html', reportName: 'CppCheckReport', reportTitles: ''] )
}
}
}
// Post build actions
post {
//always {
//}
//success {
//}
//unstable {
//}
//failure {
//}
unstable {
emailext body: "${env.JOB_NAME} - Please go to ${env.BUILD_URL}", subject: "Jenkins Pipeline build is UNSTABLE", recipientProviders: [culprits(),requestor()]
}
failure {
emailext body: "${env.JOB_NAME} - Please go to ${env.BUILD_URL}", subject: "Jenkins Pipeline build FAILED", recipientProviders: [culprits(),requestor()]
}
}
}