From c4d65905b73e0a7c6a8a91052a22619e6ad73cbe Mon Sep 17 00:00:00 2001 From: Carlos Date: Thu, 19 Feb 2026 14:11:15 -0800 Subject: [PATCH] Fix Windows CI tests not running after artifact rename CCExtractor/ccextractor#2119 renamed the Windows build artifact from "CCExtractor Windows Release build" to "CCExtractor Windows x64 Release build" (adding x86 as a separate artifact). The exact-match lookup in find_artifact_for_commit() could no longer find it, so verify_artifacts_exist() returned False for Windows, causing all Windows tests to be skipped with "Not ran - no code changes". Co-Authored-By: Claude Opus 4.6 --- mod_ci/controllers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod_ci/controllers.py b/mod_ci/controllers.py index 1414e1b0..d625103a 100755 --- a/mod_ci/controllers.py +++ b/mod_ci/controllers.py @@ -250,7 +250,7 @@ class Artifact_names(DeclEnum): """Define CCExtractor GitHub Artifacts names.""" linux = "CCExtractor Linux build" - windows = "CCExtractor Windows Release build" + windows = "CCExtractor Windows x64 Release build" def is_valid_commit_hash(commit: Optional[str]) -> bool: