ccache stats
Some checks failed
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Failing after 16s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Failing after 14s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: OFF) (push) Failing after 53s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang (Unity Build: ON) (push) Failing after 11s
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 & Test Release with ./ConanProfiles/clang (Unity Build: OFF) (push) Has been cancelled
Bigfoot / Build And Upload Conan Dependencies to BigfootPackages (push) Has been cancelled
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: OFF) (push) Failing after 13s
Bigfoot / Build & Test Debug with ./ConanProfiles/clang (Unity Build: ON) (push) Failing after 12s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: OFF) (push) Failing after 12s
Bigfoot / Build & Test RelWithDebInfo with ./ConanProfiles/clang_asan (Unity Build: ON) (push) Failing after 11s

This commit is contained in:
2026-04-14 16:08:21 +02:00
parent f99a5e32a6
commit 9c2c599de5
2 changed files with 18 additions and 0 deletions

View File

@@ -31,6 +31,9 @@ jobs:
with:
submodules: recursive
- name: Reset ccache stats
run: ccache --zero-stats
- name: Build
run: |
for build_type in Debug RelWithDebInfo Release; do
@@ -51,6 +54,9 @@ jobs:
-o bigfoot/*:tracy=False \
-o bigfoot/*:build_tools=True \
-o bigfoot/*:vulkan=True
- name: Show ccache stats
run: ccache --show-stats
- name: Upload
run: conan upload "*" -r bigfootpackages --confirm

View File

@@ -25,17 +25,29 @@ jobs:
fetch-depth: 0
submodules: recursive
- name: Reset ccache stats
run: ccache --zero-stats
- name: Build And Upload Conan Dependencies
run: |
conan install . --remote=bigfootpackages -pr:h=./ConanProfiles/clang_coverage -pr:b=./ConanProfiles/clang_coverage --build=missing -s build_type=Debug -o bigfoot/*:build_tests=True -o bigfoot/*:tracy=False -o bigfoot/*:build_tools=True -o bigfoot/*:vulkan=True
conan upload "*" -r bigfootpackages --confirm
- name: Show ccache stats
run: ccache --show-stats
- name: Reset ccache stats
run: ccache --zero-stats
- name: Build
run: |
conan install . --remote=bigfootpackages -pr:h=./ConanProfiles/clang_coverage -pr:b=./ConanProfiles/clang_coverage --build=never -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)
- name: Show ccache stats
run: ccache --show-stats
- name: Clang-Tidy
run: run-clang-tidy -p ./build/Debug/ >> tidy_result.txt