From 40e1df0b79b3ac45d2ae5422981cd0293558e8aa Mon Sep 17 00:00:00 2001 From: Quentin Quadrat Date: Tue, 7 May 2024 21:26:51 +0200 Subject: [PATCH] CI: verbose --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92bb6cb..6f9b822 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -71,19 +71,19 @@ jobs: - name: Compile OpenGlassBox run: | make download-external-libs - make compile-external-libs - make -j`nproc --all` + V=1 make compile-external-libs + V=1 make -j`nproc --all` sudo make install - name: Do non regression tests run: | cd tests - make -j`nproc --all` + V=1 make -j`nproc --all` ./build/OpenGlassBox-UnitTest - name: Check if the library can be linked against a project run: | git clone https://github.com/Lecrapouille/LinkAgainstMyLibs.git --recurse-submodules --depth=1 cd LinkAgainstMyLibs/OpenGlassBox - make -j`nproc --all` + V=1 make -j`nproc --all` non_regression_macos: name: Non regression tests on MacOS X