You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2020/08/05 17:02:36 UTC

[accumulo] branch main updated (dfb4be4 -> 382054d)

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

ctubbsii pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git.


    from dfb4be4  Merge branch '1.9' into main
     add 750286a  Use GitHub Actions for CI testing (#1671)
     new 3a45d4c  Merge branch '1.9' into main
     new 382054d  Update GitHub Actions for main branch (#1671)

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


[accumulo] 02/02: Update GitHub Actions for main branch (#1671)

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

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git

commit 382054d119915c237e3b3bf42305ed05d95cee48
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Wed Aug 5 12:35:06 2020 -0400

    Update GitHub Actions for main branch (#1671)
    
    Update GitHub Actions workflow for CI testing on the main/2.1
    development branch.
---
 .github/workflows/maven.yaml | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml
index d380479..dd78a36 100644
--- a/.github/workflows/maven.yaml
+++ b/.github/workflows/maven.yaml
@@ -24,17 +24,18 @@ name: QA
 
 on:
   push:
-    branches: [ 1.9, 1.10 ]
+    branches: [ 2.1, main ]
   pull_request:
-    branches: [ 1.9, 1.10 ]
+    branches: [ 2.1, main ]
 
 jobs:
   build:
     strategy:
       matrix:
-        hadoop:
-          - 'hadoop.profile=2'
-          - 'hadoop.profile=3'
+        profile:
+          - {name: 'verify', args: 'verify javadoc:jar -DskipITs'}
+          - {name: 'sec-bugs', args: 'verify -PskipQA,sec-bugs -Dspotbugs.skip=false -Dspotbugs.timeout=3600000'}
+          - {name: 'hadoop-3.0.3', args: 'package -DskipTests -Dhadoop.version=3.0.3'}
       fail-fast: false
     runs-on: ubuntu-latest
     steps:
@@ -49,8 +50,8 @@ jobs:
         path: ~/.m2
         key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
         restore-keys: ${{ runner.os }}-m2
-    - name: Build with Maven (${{ matrix.hadoop }})
-      run: mvn -B -V -e "-Dstyle.color=always" verify javadoc:jar -DskipITs "-D${{ matrix.hadoop }}"
+    - name: Build with Maven (${{ matrix.profile.name }})
+      run: mvn -B -V -e "-Dstyle.color=always" ${{ matrix.profile.args }}
       env:
         MAVEN_OPTS: -Djansi.force=true
 


[accumulo] 01/02: Merge branch '1.9' into main

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

ctubbsii pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git

commit 3a45d4cc556236b44daf7a0ccb4f940674787e01
Merge: dfb4be4 750286a
Author: Christopher Tubbs <ct...@apache.org>
AuthorDate: Wed Aug 5 12:27:57 2020 -0400

    Merge branch '1.9' into main

 .github/workflows/maven.yaml | 56 ++++++++++++++++++++++++++++++++++++++++++++
 .travis.yml                  | 34 ---------------------------
 pom.xml                      |  4 ++--
 3 files changed, 58 insertions(+), 36 deletions(-)