You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@oozie.apache.org by rk...@apache.org on 2016/06/16 22:11:25 UTC

oozie git commit: OOZIE-2570 remove -PtestPatchCompile from patch testing as there is no such profile (gezapeti via rkanter)

Repository: oozie
Updated Branches:
  refs/heads/master 7770d1e83 -> 22e071036


OOZIE-2570 remove -PtestPatchCompile from patch testing as there is no such profile (gezapeti via rkanter)


Project: http://git-wip-us.apache.org/repos/asf/oozie/repo
Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/22e07103
Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/22e07103
Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/22e07103

Branch: refs/heads/master
Commit: 22e0710362843c1f70262969a9d3642506d640b4
Parents: 7770d1e
Author: Robert Kanter <rk...@cloudera.com>
Authored: Thu Jun 16 15:11:17 2016 -0700
Committer: Robert Kanter <rk...@cloudera.com>
Committed: Thu Jun 16 15:11:17 2016 -0700

----------------------------------------------------------------------
 bin/test-patch-10-compile | 4 ++--
 release-log.txt           | 1 +
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/22e07103/bin/test-patch-10-compile
----------------------------------------------------------------------
diff --git a/bin/test-patch-10-compile b/bin/test-patch-10-compile
index f13aed4..949a46c 100755
--- a/bin/test-patch-10-compile
+++ b/bin/test-patch-10-compile
@@ -101,7 +101,7 @@ parseArgs "$@"
 
 case $OP in
   pre)
-    mvn clean test -PtestPatchCompile -DskipTests ${MVNPASSTHRU} | tee ${REPORTDIR}/${TASKNAME}-clean.txt >> $STDOUT
+    mvn clean test -DskipTests ${MVNPASSTHRU} | tee ${REPORTDIR}/${TASKNAME}-clean.txt >> $STDOUT
     if [[ ${PIPESTATUS[0]} == 0 ]] ; then
       echo "{color:green}+1{color} HEAD compiles" >> ${TEMPDIR}/${TASKNAME}-compile.txt
     else
@@ -109,7 +109,7 @@ case $OP in
     fi
     ;;
   post)
-    mvn clean test -PtestPatchCompile -DskipTests ${MVNPASSTHRU} | tee ${REPORTDIR}/${TASKNAME}-patch.txt >> $STDOUT
+    mvn clean test -DskipTests ${MVNPASSTHRU} | tee ${REPORTDIR}/${TASKNAME}-patch.txt >> $STDOUT
     if [[ ${PIPESTATUS[0]} == 0 ]] ; then
       echo "{color:green}+1{color} patch compiles" >> ${TEMPDIR}/${TASKNAME}-compile.txt
     else

http://git-wip-us.apache.org/repos/asf/oozie/blob/22e07103/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index b585a27..40b698b 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 4.3.0 release (trunk - unreleased)
 
+OOZIE-2570 remove -PtestPatchCompile from patch testing as there is no such profile (gezapeti via rkanter)
 OOZIE-2504 Create a log4j.properties under HADOOP_CONF_DIR in Shell Action (harsh)
 OOZIE-2567 HCat connection is not closed while getting hcat cred (puru)
 OOZIE-2547 Add mapreduce.job.cache.files to spark action (satishsaley via rohini)