From 12f0eb9a8a42f0b67c4d05ff07f60f434e37e425 Mon Sep 17 00:00:00 2001 From: Gguidini Date: Thu, 4 Apr 2024 19:02:55 +0200 Subject: [PATCH] ci: reduce time running codecov The codecov action is performing unecessary operations. It runs by default some plugins that are having the side effect of generating and extra coverage report. This takes 1 minute (sometimes 2!) _per CI run_. These changes disable those plugins. So it action should only search for the existing XML report and upload it. --- .github/actions/artifacts/action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/actions/artifacts/action.yml b/.github/actions/artifacts/action.yml index a7b4d98d9fd555..4275dfe8e26d85 100644 --- a/.github/actions/artifacts/action.yml +++ b/.github/actions/artifacts/action.yml @@ -24,4 +24,5 @@ runs: flags: ${{ inputs.type }} files: ${{ inputs.files }} verbose: true + plugin: "noop" continue-on-error: true