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