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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8132d18  NIFI-6694 This closes #3779. Exclude Hive 3 components from 
caching and build stages Added exclusion of nifi-hive3-nar and 
nifi-hive3-processors from the caching stages Added "*hive3*" to the find 
command used to filter (remove) directories from the build stages
8132d18 is described below

commit 8132d182c7f5e7865fbce39f08bbaabf120c9905
Author: Jeff Storck <[email protected]>
AuthorDate: Mon Sep 30 10:51:58 2019 -0400

    NIFI-6694 This closes #3779. Exclude Hive 3 components from caching and 
build stages
    Added exclusion of nifi-hive3-nar and nifi-hive3-processors from the 
caching stages
    Added "*hive3*" to the find command used to filter (remove) directories 
from the build stages
    
    Signed-off-by: Joe Witt <[email protected]>
---
 .travis.yml | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 912213a..72ae924 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,7 +22,7 @@ matrix:
       script: >-
         if [ ! -d "$HOME"/.m2/repository ] || [ ! "$(ls -A 
"$HOME"/.m2/repository)" ] ; then
           echo "Cached Maven repository does not exist, downloading 
dependencies..."
-          mvn -V -T 1C dependency:go-offline -Dsilent -ntp --fail-never \
+          mvn -V -T 1C -pl 
!./nifi-nar-bundles/nifi-hive-bundle/nifi-hive3-nar,!./nifi-nar-bundles/nifi-hive-bundle/nifi-hive3-processors
 dependency:go-offline -Dsilent -ntp --fail-never \
           | grep -v -F -f .travis-output-filters -e "Failed to execute goal on 
project"
         else
           echo "Cached Maven repository exists, skipping dependency cache"
@@ -33,7 +33,7 @@ matrix:
       script: >-
         if [ ! -d "$HOME"/.m2/repository ] || [ ! "$(ls -A 
"$HOME"/.m2/repository)" ] ; then
           echo "Cached Maven repository does not exist, downloading 
dependencies..."
-          mvn -V -T 1C dependency:go-offline -Dsilent -ntp --fail-never \
+          mvn -V -T 1C -pl 
!./nifi-nar-bundles/nifi-hive-bundle/nifi-hive3-nar,!./nifi-nar-bundles/nifi-hive-bundle/nifi-hive3-processors
 dependency:go-offline -Dsilent -ntp --fail-never \
           | grep -v -F -f .travis-output-filters -e "Failed to execute goal on 
project"
         else
           echo "Cached Maven repository exists, skipping dependency cache"
@@ -47,7 +47,7 @@ matrix:
       jdk: openjdk8
       script: >-
         mvn clean install -V -T 1C
-        -pl `find . -type d \( -name "*-nar" -or -name "*-assembly" \) -and 
-not -name "*api-nar" -and -not -path "*/target/*" -and -not -name "*__*" 
-printf "!./%P,"`
+        -pl `find . -type d \( -name "*-nar" -or -name "*-assembly" -or -name 
"*hive3*" \) -and -not -name "*api-nar" -and -not -path "*/target/*" -and -not 
-name "*__*" -printf "!./%P,"`
         -Pcontrib-check,include-grpc -Ddir-only
         -Dmaven.surefire.arguments="-Duser.language=en -Duser.region=US"
         | grep -v -F -f .travis-output-filters
@@ -57,7 +57,7 @@ matrix:
       jdk: openjdk8
       script: >-
         mvn clean install -V -T 1C
-        -pl `find . -type d \( -name "*-nar" -or -name "*-assembly" \) -and 
-not -name "*api-nar" -and -not -path "*/target/*" -and -not -name "*__*" 
-printf "!./%P,"`
+        -pl `find . -type d \( -name "*-nar" -or -name "*-assembly" -or -name 
"*hive3*" \) -and -not -name "*api-nar" -and -not -path "*/target/*" -and -not 
-name "*__*" -printf "!./%P,"`
         -Pcontrib-check,include-grpc -Ddir-only
         -Dmaven.surefire.arguments="-Duser.language=fr -Duser.region=FR"
         | grep -v -F -f .travis-output-filters
@@ -67,7 +67,7 @@ matrix:
       jdk: openjdk8
       script: >-
         mvn clean install -V -T 1C
-        -pl `find . -type d \( -name "*-nar" -or -name "*-assembly" \) -and 
-not -name "*api-nar" -and -not -path "*/target/*" -and -not -name "*__*" 
-printf "!./%P,"`
+        -pl `find . -type d \( -name "*-nar" -or -name "*-assembly" -or -name 
"*hive3*" \) -and -not -name "*api-nar" -and -not -name "*hive3*" -and -not 
-path "*/target/*" -and -not -name "*__*" -printf "!./%P,"`
         -Pcontrib-check,include-grpc -Ddir-only
         -Dmaven.surefire.arguments="-Duser.language=ja -Duser.region=JP"
         | grep -v -F -f .travis-output-filters
@@ -87,7 +87,7 @@ matrix:
       script:
         - >-
           mvn clean install -V -T 1C
-          -pl `find . -type d \( -name "*-nar" -or -name "*-assembly" \) -and 
-not -name "*api-nar" -and -not -path "*/target/*" -and -not -name "*__*" 
-printf "!./%P,"`
+          -pl `find . -type d \( -name "*-nar" -or -name "*-assembly" -or 
-name "*hive3*" \) -and -not -name "*api-nar" -and -not -path "*/target/*" -and 
-not -name "*__*" -printf "!./%P,"`
           -Pcontrib-check,include-grpc -Ddir-only
           -Dmaven.surefire.arguments="-Duser.language=en -Duser.region=US"
           | grep -v -F -f .travis-output-filters

Reply via email to