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/08 18:00:41 UTC

[unomi] branch UNOMI-746-deactivate-jacoco updated (5fbb23035 -> 3d9bafe4e)

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

jsinovassinnaik pushed a change to branch UNOMI-746-deactivate-jacoco
in repository https://gitbox.apache.org/repos/asf/unomi.git


 discard 5fbb23035 UNOMI-746 : deactivate jacoco
     new 3d9bafe4e UNOMI-746 : deactivate jacoco

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (5fbb23035)
            \
             N -- N -- N   refs/heads/UNOMI-746-deactivate-jacoco (3d9bafe4e)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/workflows/unomi-ci-build-tests.yml | 1 +
 1 file changed, 1 insertion(+)


[unomi] 01/01: UNOMI-746 : deactivate jacoco

Posted by js...@apache.org.
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 <js...@jahia.com>
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>