ci(core): remove unneeded exclude from `core_emu_arm` job
What changed, and why it matters
This is a minor cleanup of a GitHub Actions CI workflow file. It removes an 'exclude' rule that was preventing a certain combination of test settings from running, but the excluded combination was already impossible because the matrix did not include those values. There is no product code change and no security relevance.
No action needed. This is a non-security CI cleanup.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The commit removes an exclude block from the core_emu_arm job matrix in .github/workflows/core.yml. The matrix defines type: [debuglink] and asan: [noasan], so the excluded pair type: normal / asan: asan could never be generated. Removing it is a no-op cleanup with no effect on build outputs, artifacts, or firmware behavior.
Changed components
.github/workflows/core.ymlInspect captured patch +0 / −3
diff --git a/.github/workflows/core.yml b/.github/workflows/core.yml
index a53f751f..cb4fb6b0 100644
--- a/.github/workflows/core.yml
+++ b/.github/workflows/core.yml
@@ -163,9 +163,6 @@ jobs:
coins: [universal]
type: [debuglink]
asan: [noasan]
- exclude:
- - type: normal
- asan: asan
env:
TREZOR_MODEL: ${{ matrix.model }}
BITCOIN_ONLY: ${{ matrix.coins == 'universal' && '0' || '1' }}
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.