From e5e4a997cbc68bf2b37dabd2845f41fdb66cb140 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Fri, 17 Apr 2026 15:09:19 +0200 Subject: [PATCH] fix build --- .gitea/workflows/sonarqube.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/sonarqube.yml b/.gitea/workflows/sonarqube.yml index 4aebf0c..2e2ce3f 100644 --- a/.gitea/workflows/sonarqube.yml +++ b/.gitea/workflows/sonarqube.yml @@ -40,7 +40,7 @@ on: 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 \ @@ -48,7 +48,7 @@ on: 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 \ @@ -88,7 +88,7 @@ jobs: - name: Build run: | - conan install . --remote=bigfootpackages -pr:h=./ConanProfiles/clang_coverage -pr:b=./ConanProfiles/Tools/clang --build=never -s build_type=Debug -o bigfoot/*:build_tests=True -o bigfoot/*:tracy=False -o bigfoot/*:build_tools=True -o bigfoot/*:vulkan=True + conan install . --remote=bigfootpackages -pr:h=./ConanProfiles/clang_coverage -pr:b=./ConanProfiles/Tools/clang --build=* -s build_type=Debug -o bigfoot/*:build_tests=True -o bigfoot/*:tracy=False -o bigfoot/*:build_tools=True -o bigfoot/*:vulkan=True cmake -S . -B ./build/Debug --toolchain ./build/Debug/generators/conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Debug -G "Ninja" cmake --build build/Debug --parallel $(nproc)