This is an automated email from the ASF dual-hosted git repository. jsinovassinnaik pushed a commit to branch UNOMI-746-deactivate-jacoco in repository https://gitbox.apache.org/repos/asf/unomi.git
commit 3d9bafe4e4312d775639d28d89d3e96cc56d0702 Author: jsinovassin <[email protected]> AuthorDate: Wed Mar 8 17:49:05 2023 +0100 UNOMI-746 : deactivate jacoco --- .github/workflows/unomi-ci-build-tests.yml | 1 + itests/pom.xml | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/.github/workflows/unomi-ci-build-tests.yml b/.github/workflows/unomi-ci-build-tests.yml index a0a0257cb..4ee27ca0e 100644 --- a/.github/workflows/unomi-ci-build-tests.yml +++ b/.github/workflows/unomi-ci-build-tests.yml @@ -45,6 +45,7 @@ jobs: run: mvn -ntp clean install -Pintegration-tests - name: Archive code coverage logs uses: actions/upload-artifact@v3 + if: false # UNOMI-746 Reactivate if necessary with: name: unomi-code-coverage-jdk${{ matrix.java }}-${{ github.run_number }} path: itests/target/site/jacoco diff --git a/itests/pom.xml b/itests/pom.xml index 375e816b6..105461bf7 100644 --- a/itests/pom.xml +++ b/itests/pom.xml @@ -282,6 +282,16 @@ </execution> </executions> </plugin> + </plugins> + </build> + </profile> + <profile> + <id>jacoco-report-exec</id> + <activation> + <activeByDefault>false</activeByDefault> + </activation> + <build> + <plugins> <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId>
