You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datasketches.apache.org by le...@apache.org on 2021/01/30 01:54:28 UTC

[datasketches-java] branch master updated (b1db5bc -> 12753d7)

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

leerho pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git.


    from b1db5bc  Add .github/ export-ignore to .gitattributes
     new d41ab15  Add rat excludes for *.yaml, *.yml
     new 65293b7  update rat checks
     new f862b9f  Remove travis.yml
     new 12753d7  Update maven.yml

The 4 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 | 32 ++++++++++++++++++++++++++++++++
 .travis.yml                 | 43 -------------------------------------------
 pom.xml                     |  3 ++-
 3 files changed, 34 insertions(+), 44 deletions(-)
 create mode 100644 .github/workflows/maven.yml
 delete mode 100644 .travis.yml


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


[datasketches-java] 02/04: update rat checks

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

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git

commit 65293b79682847cf3b4e565353162594e8d1490d
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Fri Jan 29 14:54:02 2021 -0800

    update rat checks
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index c8002ea..566c0d7 100644
--- a/pom.xml
+++ b/pom.xml
@@ -298,7 +298,7 @@ under the License.
             <excludes>
               <!-- rat uses .gitignore for excludes by default -->
               <exclude>**/*.yaml</exclude>
-              <exclude>***/*.yml</exclude>
+              <exclude>**/*.yml</exclude>
               <exclude>**/test/resources/**/*.txt</exclude>
               <exclude>LICENSE</exclude>
               <exclude>NOTICE</exclude>


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


[datasketches-java] 03/04: Remove travis.yml

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

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git

commit f862b9fedebc6a0512cc206a508de95591b53547
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Fri Jan 29 15:22:58 2021 -0800

    Remove travis.yml
---
 .travis.yml | 43 -------------------------------------------
 1 file changed, 43 deletions(-)

diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index e2057b5..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one or more
-# contributor license agreements.  See the NOTICE file distributed with
-# this work for additional information regarding copyright ownership.
-# The ASF licenses this file to You under the Apache License, Version 2.0
-# (the "License"); you may not use this file except in compliance with
-# the License.  You may obtain a copy of the License at
-#
-#     http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# http://docs.travis-ci.com/user/customizing-the-build/
-
-language: java
-
-dist: trusty
-
-jdk:
- - openjdk8
-
-install:
- - mvn clean install -q -Dmaven.javadoc.skip=true -Dsource.skip=true -DskipTests=true -Dgpg.skip=true
-
-before_script:
- - _JAVA_OPTIONS="-Xmx4g -Xms1g"
-
-script:
- - mvn clean compile test -q -Dgpg.skip=true
-
-after_success: 
- - mvn clean test jacoco:report coveralls:report -q -DrepoToken=$coveralls_token -DisDebugEnabled=true
-
-notifications:
-  email: false
-
-cache:
-  directories:
-  - .autoconf
-  - $HOME/.m2


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


[datasketches-java] 04/04: Update maven.yml

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

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git

commit 12753d7049a512626b74a8c174152681e586add1
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Fri Jan 29 17:45:08 2021 -0800

    Update maven.yml
---
 .github/workflows/maven.yml | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
index 94a1e45..183812c 100644
--- a/.github/workflows/maven.yml
+++ b/.github/workflows/maven.yml
@@ -6,10 +6,12 @@ on:
     pull_request:
         branches: [ master ]
 
+env: MAVEN_OPTS="-Xmx4g -Xms1g"
+
 jobs:
     build:
+        name: Build Job
         runs-on: ubuntu-latest
-        env: MAVEN_OPTS="-Xmx4g -Xms1g"
         
         steps:
         - name: Checkout
@@ -21,9 +23,10 @@ jobs:
               java-version: 1.8  #OR 8.0.212 | 16.0.0-ea.28 (.28 is build #)
 
         - name: Maven clean test
-          run: mvn clean test jacoco:report coveralls:report -q -Dgpg.skip=true -DisDebugEnabled=true --batch-mode
+          run: mvn clean test jacoco:report coveralls:report -q -Dgpg.skip=true -DisDebugEnabled=true --batch-mode --file=pom.xml
 
         - name: Coveralls
+          if: ${{ success() }}
           uses: coverallsapp/github-action@master
           with:
               github-token: ${{ secrets.github_token }}
\ No newline at end of file


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


[datasketches-java] 01/04: Add rat excludes for *.yaml, *.yml

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

leerho pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/datasketches-java.git

commit d41ab157e8c803b3c19502cffacbc246edea2e2d
Author: Lee Rhodes <le...@users.noreply.github.com>
AuthorDate: Fri Jan 29 14:51:15 2021 -0800

    Add rat excludes for *.yaml, *.yml
---
 .github/workflows/maven.yml | 29 +++++++++++++++++++++++++++++
 pom.xml                     |  3 ++-
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml
new file mode 100644
index 0000000..94a1e45
--- /dev/null
+++ b/.github/workflows/maven.yml
@@ -0,0 +1,29 @@
+name: Java CI with Maven, Coveralls
+
+on:
+    push:
+        branches: [ master ]
+    pull_request:
+        branches: [ master ]
+
+jobs:
+    build:
+        runs-on: ubuntu-latest
+        env: MAVEN_OPTS="-Xmx4g -Xms1g"
+        
+        steps:
+        - name: Checkout
+          uses: actions/checkout@v2
+
+        - name: Set up JDK 1.8
+          uses: actions/setup-java@v1
+          with:
+              java-version: 1.8  #OR 8.0.212 | 16.0.0-ea.28 (.28 is build #)
+
+        - name: Maven clean test
+          run: mvn clean test jacoco:report coveralls:report -q -Dgpg.skip=true -DisDebugEnabled=true --batch-mode
+
+        - name: Coveralls
+          uses: coverallsapp/github-action@master
+          with:
+              github-token: ${{ secrets.github_token }}
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index 8ea0306..c8002ea 100644
--- a/pom.xml
+++ b/pom.xml
@@ -297,7 +297,8 @@ under the License.
             <useDefaultExcludes>true</useDefaultExcludes>
             <excludes>
               <!-- rat uses .gitignore for excludes by default -->
-              <exclude>.asf.yaml</exclude>
+              <exclude>**/*.yaml</exclude>
+              <exclude>***/*.yml</exclude>
               <exclude>**/test/resources/**/*.txt</exclude>
               <exclude>LICENSE</exclude>
               <exclude>NOTICE</exclude>


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