1
0
Fork 0

Fix: [CI] Disable CodeQL Trap Cache, as it trashes our cache

Each cache is ~1GB. And you can only have 10GB of cache. So after
10 runs, our cache is full of trap caches.

The kicker? We don't actually benefit from this cache. It is only
used if you re-run CodeQL over the exact same codebase (without
changes), to quickly re-evaluate the latest CodeQL set. We are
way to active to have any benefit from that, and we don't run
CodeQL on a schedule to ever pick up on the cache.
pull/13832/head
Patric Stout 2025-03-16 12:08:26 +01:00
parent ec647975ad
commit bb3792b106
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@ jobs:
with: with:
languages: cpp languages: cpp
config-file: ./.github/codeql/codeql-config.yml config-file: ./.github/codeql/codeql-config.yml
trap-caching: false
- name: Build - name: Build
run: | run: |