There was an error while loading. Please reload this page.
1 parent 41e1342 commit c38a771Copy full SHA for c38a771
1 file changed
Jenkinsfile
@@ -66,9 +66,15 @@ pipeline {
66
}
67
68
steps {
69
- sh "./configure --with-netcdf --with-fftw3 pgi"
70
- sh "make -j6 install"
71
- sh "make check"
+ script {
+ try {
+ 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
78
79
80
stage("Linux GNU parallel build") {
0 commit comments