reduce build steps
Some checks failed
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang (Unity Build: ON) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build & Test Release with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Has been cancelled
Bigfoot / Clang Format Checks (push) Has been cancelled
Bigfoot / Build And Upload Conan Dependencies to BigfootPackages (push) Has been cancelled

This commit is contained in:
2026-04-14 16:04:11 +02:00
parent 9ab704da29
commit f99a5e32a6

View File

@@ -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