ci: run make with VERBOSE=1

This helps to identify compilation/linking issues
This commit is contained in:
Luis Díaz Más 2018-05-22 17:48:36 +02:00
parent c3629117d8
commit e440e40f32

View File

@ -16,7 +16,7 @@ fi
mkdir build && cd build
conan install .. --build missing --profile release
cmake ${CMAKE_OPTIONS} -DCMAKE_INSTALL_PREFIX=install ..
make -j2
make -j2 VERBOSE=1
make tests
make install
cd bin