You are viewing a plain text version of this content. The canonical link for it is here.
Posted to hcatalog-commits@incubator.apache.org by tr...@apache.org on 2013/01/18 22:32:41 UTC

svn commit: r1435378 - in /incubator/hcatalog/branches/branch-0.5: CHANGES.txt build-support/scripts/test.sh build.xml

Author: travis
Date: Fri Jan 18 22:32:40 2013
New Revision: 1435378

URL: http://svn.apache.org/viewvc?rev=1435378&view=rev
Log:
HCATALOG-603 releaseaudit should run before generating artifacts

Modified:
    incubator/hcatalog/branches/branch-0.5/CHANGES.txt
    incubator/hcatalog/branches/branch-0.5/build-support/scripts/test.sh
    incubator/hcatalog/branches/branch-0.5/build.xml

Modified: incubator/hcatalog/branches/branch-0.5/CHANGES.txt
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/CHANGES.txt?rev=1435378&r1=1435377&r2=1435378&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/CHANGES.txt (original)
+++ incubator/hcatalog/branches/branch-0.5/CHANGES.txt Fri Jan 18 22:32:40 2013
@@ -164,6 +164,8 @@ Release 0.5.0 - Unreleased
   OPTIMIZATIONS
 
   BUG FIXES
+  HCAT-603 releaseaudit should run before generating artifacts (traviscrawford)
+
   HCAT-598 fix setting hcatalog version number via the command-line (traviscrawford)
 
   HCAT-600 webhcat installation doc incorrectly gives location of start/stop script

Modified: incubator/hcatalog/branches/branch-0.5/build-support/scripts/test.sh
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/build-support/scripts/test.sh?rev=1435378&r1=1435377&r2=1435378&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/build-support/scripts/test.sh (original)
+++ incubator/hcatalog/branches/branch-0.5/build-support/scripts/test.sh Fri Jan 18 22:32:40 2013
@@ -55,7 +55,7 @@ run_cmd
 
 # Build and run tests with hadoop20. This must happen afterwards so test results
 # are available for CI to publish.
-cmd='ant -Dtest.junit.output.format=xml clean package releaseaudit test'
+cmd='ant -Dtest.junit.output.format=xml clean releaseaudit package test'
 if [ "${HUDSON_URL}" == "https://builds.apache.org/" ]; then
   cmd="${cmd} mvn-deploy"
 fi

Modified: incubator/hcatalog/branches/branch-0.5/build.xml
URL: http://svn.apache.org/viewvc/incubator/hcatalog/branches/branch-0.5/build.xml?rev=1435378&r1=1435377&r2=1435378&view=diff
==============================================================================
--- incubator/hcatalog/branches/branch-0.5/build.xml (original)
+++ incubator/hcatalog/branches/branch-0.5/build.xml Fri Jan 18 22:32:40 2013
@@ -397,7 +397,7 @@
         <checksum file="${build.dir}/${final.name}.tar.gz" forceOverwrite="yes"/>
     </target>
 
-    <target name="releaseaudit" description="generate a release audit report">
+    <target name="releaseaudit" depends="init" description="generate a release audit report">
         <get src="${mvnrepo}/org/apache/rat/apache-rat/${apache-rat.version}/apache-rat-${apache-rat.version}.jar"
              dest="${basedir}/build/apache-rat-${apache-rat.version}.jar"
              usetimestamp="true"