You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by js...@apache.org on 2023/03/09 13:49:29 UTC

[unomi] branch master updated: UNOMI-746 : deactivate jacoco (#583)

This is an automated email from the ASF dual-hosted git repository.

jsinovassinnaik pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/unomi.git


The following commit(s) were added to refs/heads/master by this push:
     new 3bc7f18aa UNOMI-746 : deactivate jacoco (#583)
3bc7f18aa is described below

commit 3bc7f18aabc90ba3d3641a4443a76ba006bd858f
Author: jsinovassin <58...@users.noreply.github.com>
AuthorDate: Thu Mar 9 14:49:23 2023 +0100

    UNOMI-746 : deactivate jacoco (#583)
---
 .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>