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
6 changes: 6 additions & 0 deletions ci_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,12 @@ build_to_only_catch_errors() {
$CI_TIME make VERBOSE=0 -k -j8 all >/dev/null 2>&1 && echo "`date`: SUCCESS" ; ) || \
( echo "`date`: Starting the sequential build attempt (to list remaining files with errors considered fatal for this build configuration)..."; \
$CI_TIME make VERBOSE=1 all -k ) || return $?

echo "`date`: Starting a 'make check' for quick sanity test of the products built with the current compiler and standards"
$CI_TIME make VERBOSE=0 check \
&& echo "`date`: SUCCESS" \
|| return $?

return 0
}

Expand Down