diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-05-18 14:39:27 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-05-18 14:39:27 +0200 |
| commit | e381b49caf9d29f405cb8c9d7c2b81640135d3ba (patch) | |
| tree | d3f5bb2293bbfd53ccf78ed551d9a6a8ea5f5d9e | |
| parent | a7ba17a11c17c9975e7dc2233264913aa2e79538 (diff) | |
| download | kernel-e381b49caf9d29f405cb8c9d7c2b81640135d3ba.tar.xz kernel-e381b49caf9d29f405cb8c9d7c2b81640135d3ba.zip | |
ci: generate unique quality report names
| -rw-r--r-- | .gitlab-ci.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ebb2b8a..774708b 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,12 +5,12 @@ build:bht: - cmake --preset bht - cmake --build --preset bht-dbg 2>&1 | tee build_output.txt - set -o pipefail - - python3 scripts/ci/parse_clang_tidy.py build_output.txt > code-quality.json + - python3 scripts/ci/parse_clang_tidy.py build_output.txt > code-quality-bht.json artifacts: paths: - build/bht/ reports: - codequality: code-quality.json + codequality: code-quality-bht.json expire_in: 5 min build:bootable: @@ -20,7 +20,7 @@ build:bootable: - cmake --preset $PLATFORM - cmake --build --preset $PLATFORM-$TYPE 2>&1 | tee build_output.txt - set -o pipefail - - python3 scripts/ci/parse_clang_tidy.py build_output.txt > code-quality.json + - python3 scripts/ci/parse_clang_tidy.py build_output.txt > code-quality-$PLATFORM-$TYPE.json - cp build/${PLATFORM}/bin/**/kernel.{dis,elf,sym,iso} . artifacts: paths: @@ -29,7 +29,7 @@ build:bootable: - kernel.sym - kernel.iso reports: - codequality: code-quality.json + codequality: code-quality-$PLATFORM-$TYPE.json expire_in: 1 week parallel: |
