From 76291ad6ea7c94a011c7c4fdce5b36611b1f928f Mon Sep 17 00:00:00 2001 From: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com> Date: Wed, 29 Jul 2026 14:24:21 +0300 Subject: [PATCH] ci: bump coverage workflow refs for --build_tests_only fix eclipse-score/cicd-workflows#164 (fixed in #165, commit 4c20f0d9): the coverage workflows previously built filtered-out test targets. With wildcard patterns this builds Miri test targets too, whose Miri-sysroot compiles fail under coverage instrumentation (error[E0463]: can't find crate for 'profiler_builtins') once score_toolchains_rust >= 0.9.2 enables Rust coverage. Bumping the refs now, ahead of the toolchain bump (#369), so coverage stays green when it lands. --- .github/workflows/code_coverage.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/code_coverage.yml b/.github/workflows/code_coverage.yml index 8d75225e5..711738d9d 100644 --- a/.github/workflows/code_coverage.yml +++ b/.github/workflows/code_coverage.yml @@ -24,7 +24,7 @@ on: jobs: cpp: - uses: eclipse-score/cicd-workflows/.github/workflows/cpp-coverage.yml@ea19fcae9aeeb4ac678b750c6c197eaf75414f39 # v0.0.0 + uses: eclipse-score/cicd-workflows/.github/workflows/cpp-coverage.yml@4c20f0d9509e3a8ac81a7d2d4c493ce2d0cba3c0 # v0.0.0 with: bazel-target: "//score/..." bazel-config: "x86_64-linux" @@ -33,7 +33,7 @@ jobs: retention-days: 10 min-coverage: 76 rust: - uses: eclipse-score/cicd-workflows/.github/workflows/rust-coverage.yml@ea19fcae9aeeb4ac678b750c6c197eaf75414f39 # v0.0.0 + uses: eclipse-score/cicd-workflows/.github/workflows/rust-coverage.yml@4c20f0d9509e3a8ac81a7d2d4c493ce2d0cba3c0 # v0.0.0 with: bazel-test-targets: "//score/..." bazel-test-config-flags: "--config=x86_64-linux --config=ferrocene-coverage --lockfile_mode=error --test_lang_filters=-cc,-miri"