From a0dfcd6de07304a1b5ae15d64029983e692e82a8 Mon Sep 17 00:00:00 2001 From: Stefan Schott Date: Mon, 3 Feb 2025 12:54:03 +0100 Subject: [PATCH] download all separate coverage reports --- .github/workflows/maven.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 6ef5f1c1df..f368056023 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -254,10 +254,20 @@ jobs: **/target/ key: cache-compilation-${{ github.sha }} - - name: Download uploaded exec artifacts - uses: actions/download-artifact@v3 + - name: Download uploaded exec artifacts for JDK8 + uses: actions/download-artifact@v4 with: - name: coverage-exec + name: coverage-exec-jdk8 + + - name: Download uploaded exec artifacts for JDK9 + uses: actions/download-artifact@v4 + with: + name: coverage-exec-jdk9 + + - name: Download uploaded exec artifacts for integration tests + uses: actions/download-artifact@v4 + with: + name: coverage-exec-integration - name: merge coverage reports run: mvn -ntp jacoco:merge@merge-results -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn