Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,15 @@ pipeline {
}

steps {
sh "./configure --with-netcdf --with-fftw3 pgi"
sh "make -j6 install"
sh "make check"
script {
try {
sh "./configure --with-netcdf --with-fftw3 pgi"
sh "make -j6 install"
sh "make check"
} catch (error) {
echo "PGI BUILD AND/OR TEST FAILED"
}
}
}
}
stage("Linux GNU parallel build") {
Expand Down