From f5ade086dbd9f06dd6afc45c4646a73db0b71896 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Fri, 17 Apr 2026 15:08:39 +0200 Subject: [PATCH] fix build --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6d85dc6..ebeb847 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: for build_type in Debug RelWithDebInfo Release; do conan install . --remote=bigfootpackages \ -pr:h=./ConanProfiles/clang -pr:b=./ConanProfiles/Tools/clang \ - --build=missing \ + --build=* \ -s build_type=$build_type \ -o bigfoot/*:build_tests=True \ -o bigfoot/*:tracy=False \ @@ -49,7 +49,7 @@ jobs: done conan install . --remote=bigfootpackages \ -pr:h=./ConanProfiles/clang_asan -pr:b=./ConanProfiles/Tools/clang \ - --build=missing \ + --build=* \ -s build_type=$build_type \ -o bigfoot/*:build_tests=True \ -o bigfoot/*:tracy=False \ @@ -93,7 +93,7 @@ jobs: - name: Build run: | - conan install . --remote=bigfootpackages -pr:h=${{ matrix.conan_profile }} -pr:b=./ConanProfiles/Tools/clang --build=never -s build_type=${{ matrix.build_type }} -o bigfoot/*:build_tests=True -o bigfoot/*:tracy=False -o bigfoot/*:vulkan=True + conan install . --remote=bigfootpackages -pr:h=${{ matrix.conan_profile }} -pr:b=./ConanProfiles/Tools/clang --build=* -s build_type=${{ matrix.build_type }} -o bigfoot/*:build_tests=True -o bigfoot/*:tracy=False -o bigfoot/*:vulkan=True cmake -S . -B ./build/${{ matrix.build_type }} --toolchain ./build/${{ matrix.build_type }}/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DCMAKE_UNITY_BUILD=${{ matrix.unity_build }} -G "Ninja" cmake --build build/${{ matrix.build_type }} --parallel $(nproc)