mirror of
https://github.com/Xahau/xahaud.git
synced 2026-06-03 00:36:37 +00:00
ci: actually narrow matrix to just the llvm-cov row
prior guard checked base_ref against ['dev','candidate','release'] which excluded the very PR we're iterating on. drop the guard - this branch is for iteration only and must be reverted before merging anyway.
This commit is contained in:
8
.github/workflows/xahau-ga-nix.yml
vendored
8
.github/workflows/xahau-ga-nix.yml
vendored
@@ -236,11 +236,9 @@ jobs:
|
||||
|
||||
# TEMP (coverage-llm branch): narrow the matrix to just the new
|
||||
# clang-20 llvm-cov coverage row so we can iterate on it without
|
||||
# burning runners on the rest. Guarded so it can't accidentally
|
||||
# apply to dev/candidate/release - revert before merging anyway.
|
||||
if ref not in main_branches and base_ref not in ["dev", "candidate", "release"]:
|
||||
matrix = [e for e in matrix if e.get("coverage_tool") == "llvm"]
|
||||
print(f"TEMP override: matrix narrowed to {len(matrix)} llvm-cov row(s)")
|
||||
# burning runners on the rest. MUST be reverted before merging.
|
||||
matrix = [e for e in matrix if e.get("coverage_tool") == "llvm"]
|
||||
print(f"TEMP override: matrix narrowed to {len(matrix)} llvm-cov row(s)")
|
||||
|
||||
# Add runs_on based on job_type
|
||||
for entry in matrix:
|
||||
|
||||
Reference in New Issue
Block a user