From e440e40f325fd578d6887e080bb23559d48e723f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20D=C3=ADaz=20M=C3=A1s?= Date: Tue, 22 May 2018 17:48:36 +0200 Subject: [PATCH] ci: run make with VERBOSE=1 This helps to identify compilation/linking issues --- ci/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/run.sh b/ci/run.sh index 4b723941..cf9f5cad 100755 --- a/ci/run.sh +++ b/ci/run.sh @@ -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