From c91fa7e2dd3976135d967c23854779b318f0bad5 Mon Sep 17 00:00:00 2001 From: Calixte Denizet Date: Wed, 29 Apr 2026 16:46:23 +0200 Subject: [PATCH] Slighty improve codecov stuff in gh actions disable_search == true, will avoid useless search especially because we already provide the path to the info file. disable_telem == true, disable sending telemetry to codecov. --- .github/workflows/ci.yml | 2 ++ .github/workflows/font_tests.yml | 2 ++ .github/workflows/unit_tests.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b9c6d7d03..25098313d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,4 +60,6 @@ jobs: files: ./build/coverage/unitcli/lcov.info flags: unittestcli name: codecov-umbrella + disable_search: true + disable_telem: true verbose: true diff --git a/.github/workflows/font_tests.yml b/.github/workflows/font_tests.yml index 583212b96..368a841f1 100644 --- a/.github/workflows/font_tests.yml +++ b/.github/workflows/font_tests.yml @@ -78,4 +78,6 @@ jobs: files: ./build/coverage/font/lcov.info flags: fonttest name: codecov-umbrella + disable_search: true + disable_telem: true verbose: true diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 8a7f62582..07f19210d 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -86,4 +86,6 @@ jobs: files: ./build/coverage/unit/lcov.info flags: unittest name: codecov-umbrella + disable_search: true + disable_telem: true verbose: true