From 7735ab48c42798da66bd44154c4f5ec1fc187c4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= Date: Fri, 9 Sep 2022 17:02:40 +0200 Subject: [PATCH] CI: Make CMake builds use verbose output --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6cc968a..3dbf3477 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -119,12 +119,12 @@ jobs: - name: Build godot-cpp run: | cmake -DCMAKE_BUILD_TYPE=Release . - make -j $(nproc) + make -j $(nproc) VERBOSE=1 - name: Build test GDNative library run: | cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." . - make -j $(nproc) + make -j $(nproc) VERBOSE=1 linux-cmake-ninja: name: 🐧 Build (Linux, GCC, CMake Ninja) @@ -143,12 +143,12 @@ jobs: - name: Build godot-cpp run: | cmake -DCMAKE_BUILD_TYPE=Release -GNinja . - cmake --build . -j $(nproc) + cmake --build . -j $(nproc) --verbose - name: Build test GDNative library run: | cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -GNinja . - cmake --build . -j $(nproc) + cmake --build . -j $(nproc) --verbose windows-msvc-cmake: name: 🏁 Build (Windows, MSVC, CMake) @@ -162,12 +162,12 @@ jobs: - name: Build godot-cpp run: | cmake -DCMAKE_BUILD_TYPE=Release -G"Visual Studio 16 2019" . - cmake --build . + cmake --build . --verbose - name: Build test GDNative library run: | cd test && cmake -DCMAKE_BUILD_TYPE=Release -DGODOT_HEADERS_PATH="../godot-headers" -DCPP_BINDINGS_PATH=".." -G"Visual Studio 16 2019" . - cmake --build . + cmake --build . --verbose static-checks: name: 📊 Static Checks (clang-format)