From f99a5e32a63a65e955e5b85cbd96b58092b09d75 Mon Sep 17 00:00:00 2001 From: Romain BOULLARD Date: Tue, 14 Apr 2026 16:04:11 +0200 Subject: [PATCH] reduce build steps --- .gitea/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6740831..4f3f45c 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -33,10 +33,9 @@ jobs: - name: Build run: | - for profile in ./ConanProfiles/clang ./ConanProfiles/clang_asan; do for build_type in Debug RelWithDebInfo Release; do conan install . --remote=bigfootpackages \ - -pr:h=$profile -pr:b=$profile \ + -pr:h=./ConanProfiles/clang -pr:b=./ConanProfiles/clang \ --build=missing \ -s build_type=$build_type \ -o bigfoot/*:build_tests=True \ @@ -44,7 +43,14 @@ jobs: -o bigfoot/*:build_tools=True \ -o bigfoot/*:vulkan=True done - done + conan install . --remote=bigfootpackages \ + -pr:h=./ConanProfiles/clang_asan -pr:b=./ConanProfiles/clang_asan \ + --build=missing \ + -s build_type=$build_type \ + -o bigfoot/*:build_tests=True \ + -o bigfoot/*:tracy=False \ + -o bigfoot/*:build_tools=True \ + -o bigfoot/*:vulkan=True - name: Upload run: conan upload "*" -r bigfootpackages --confirm