mirror of
https://github.com/zeromq/libzmq.git
synced 2024-12-13 10:52:56 +01:00
Problem: ci_build.sh make check is overly complex
Solution: simply run make VERBOSE=1 check instead of manually checking for return value and cat'ing the log file. With VERBOSE, on error the log file will be automatically printed.
This commit is contained in:
parent
4366d7edf9
commit
ff1ebf6ff0
@ -28,7 +28,7 @@ if [ $BUILD_TYPE == "default" ]; then
|
|||||||
./autogen.sh &&
|
./autogen.sh &&
|
||||||
./configure "${CONFIG_OPTS[@]}" &&
|
./configure "${CONFIG_OPTS[@]}" &&
|
||||||
make &&
|
make &&
|
||||||
( if make check; then true; else cat test-suite.log; exit 1; fi ) &&
|
make VERBOSE=1 check &&
|
||||||
make install
|
make install
|
||||||
) || exit 1
|
) || exit 1
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user