You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by dc...@apache.org on 2021/09/17 10:19:08 UTC

[datasketches-java] branch Memory2-doc-fixes-gh-actions updated (faa8ab1 -> 657c543)

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

dcromberge pushed a change to branch Memory2-doc-fixes-gh-actions
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git.


    from faa8ab1  Typo in branch name
     new 88e8557  Only run coverage in jdk 8
     new 657c543  Do not skip tests on install

The 2 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/maven.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[datasketches-java] 01/02: Only run coverage in jdk 8

Posted by dc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dcromberge pushed a commit to branch Memory2-doc-fixes-gh-actions
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git

commit 88e85577d085169a296984f821ef138fd00347f8
Author: David Cromberge <da...@gmail.com>
AuthorDate: Fri Sep 17 11:17:40 2021 +0100

    Only run coverage in jdk 8
---
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index eed1d92..e6756f3 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -56,7 +56,7 @@ jobs:
               --toolchains .github/workflows/.toolchains.xml
         
         - name: Test & Report
-          if: ${{ success() }}
+          if: ${{ matrix.jdk == 8 && success() }}
           run: >
               mvn verify coveralls:report -B -V -q
               -Dcoveralls-repo-token=${repo_token}

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org


[datasketches-java] 02/02: Do not skip tests on install

Posted by dc...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dcromberge pushed a commit to branch Memory2-doc-fixes-gh-actions
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git

commit 657c54336b724ffaa73fc612732caf501b628942
Author: David Cromberge <da...@gmail.com>
AuthorDate: Fri Sep 17 11:18:58 2021 +0100

    Do not skip tests on install
---
 .github/workflows/maven.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index e6756f3..82fcbbe 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -50,7 +50,7 @@ jobs:
         - name: Install Dependencies
           run: >
               mvn clean install -B -V -q
-              -DskipTests=true
+              -DskipTests=false
               -Dmaven.javadoc.skip=true
               -Dgpg.skip=true
               --toolchains .github/workflows/.toolchains.xml

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datasketches.apache.org
For additional commands, e-mail: commits-help@datasketches.apache.org