diff --git a/contrib/nightly/build_tarball.pl b/contrib/nightly/build_tarball.pl index f942a1447d..80d1f99090 100755 --- a/contrib/nightly/build_tarball.pl +++ b/contrib/nightly/build_tarball.pl @@ -370,6 +370,14 @@ sub try_build { # save the compile warnings my $make_all_stderr = $ret->{stderr}; + # build it + $ret = do_command($merge_output, "make check"); + if ($ret->{status} != 0) { + $ret->{make_all_stderr} = $make_all_stderr; + $ret->{message} = "Failed to \"make check\""; + return $ret; + } + # install it $ret = do_command(1, "make install"); if ($ret->{status} != 0) {