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)