Hi,
>From https://builds.apache.org/job/PreCommit-HBASE-Build/3727/console (for
HBASE-7384) :
/home/jenkins/tools/maven/latest/bin/mvn clean test -DskipTests
-DHBasePatchProcess >
/home/jenkins/jenkins-slave/workspace/PreCommit-HBASE-Build/patchprocess/trunkJavacWarnings.txt
2>&1
Trunk compilation is broken?
I think this was due to the following check:
if [[ $? != 0 ]] ; then
echo "Trunk compilation is broken?"
cleanupAndExit 1
fi
I ran this command locally (with patch from HBASE-7384):
mvn clean test -DskipTests -DHBasePatchProcess > javacWarnings.txt
Here is the tail of javacWarnings.txt:
[INFO] Reactor Summary:
[INFO]
[INFO] HBase ............................................. SUCCESS [1.350s]
[INFO] HBase - Common .................................... SUCCESS [3.329s]
[INFO] HBase - Protocol .................................. SUCCESS [9.576s]
[INFO] HBase - Client .................................... SUCCESS [0.571s]
[INFO] HBase - Hadoop Compatibility ...................... SUCCESS [0.559s]
[INFO] HBase - Hadoop One Compatibility .................. SUCCESS [0.843s]
[INFO] HBase - Server .................................... SUCCESS [14.312s]
[INFO] HBase - Hadoop Two Compatibility .................. SUCCESS [2.103s]
[INFO] HBase - Integration Tests ......................... SUCCESS [1.080s]
[INFO] HBase - Examples .................................. SUCCESS [2.084s]
[INFO]
------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO]
------------------------------------------------------------------------
[INFO] Total time: 36.231s
[INFO] Finished at: Thu Dec 27 18:56:06 PST 2012
$? was 1.
I think the check should be improved so that Hadoop QA can continue running
test suite.
Cheers