Skip to content

Commit c38a771

Browse files
swailsdrroe
authored andcommitted
Do not make PGI builds fatal (#752)
1 parent 41e1342 commit c38a771

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

Jenkinsfile

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,15 @@ pipeline {
6666
}
6767

6868
steps {
69-
sh "./configure --with-netcdf --with-fftw3 pgi"
70-
sh "make -j6 install"
71-
sh "make check"
69+
script {
70+
try {
71+
sh "./configure --with-netcdf --with-fftw3 pgi"
72+
sh "make -j6 install"
73+
sh "make check"
74+
} catch (error) {
75+
echo "PGI BUILD AND/OR TEST FAILED"
76+
}
77+
}
7278
}
7379
}
7480
stage("Linux GNU parallel build") {

0 commit comments

Comments
 (0)