From bdaf3681383e4353cdb0bd32ffd84694b3c58151 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Wed, 28 Jan 2026 11:42:04 +0100 Subject: [PATCH] fix build --- .gitea/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 150bae3..e434a38 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -17,8 +17,8 @@ jobs: image: git.romainboullard.com/bigfootdev/linuxbigfootbuilder:main strategy: matrix: - build_type: [Debug, RelWithDebInfo, Release] - unity_build: [True, False] + build_type: ["Debug", "RelWithDebInfo", "Release"] + unity_build: ["True", "False"] steps: - name: Install Node.js run: apt-get update && apt-get install -y nodejs @@ -37,10 +37,10 @@ jobs: cmake -S . -B ./build/${{ matrix.build_type }} --toolchain ./build/${{ matrix.build_type }}/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -G "Ninja" cmake --build build/${{ matrix.build_type }} --parallel $(nproc) + - name: Show ccache stats after + run: ccache --show-stats + - name: Test run: | cd ./build/${{ matrix.build_type }} - xvfb-run ctest . --output-on-failure - - - name: Show ccache stats after - run: ccache --show-stats \ No newline at end of file + xvfb-run ctest . --output-on-failure \ No newline at end of file