You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2012/10/08 12:31:57 UTC

svn commit: r1395508 - /buildr/trunk/rakelib/doc.rake

Author: donaldp
Date: Mon Oct  8 10:31:57 2012
New Revision: 1395508

URL: http://svn.apache.org/viewvc?rev=1395508&view=rev
Log:
Rescue an exception around the documentation tasks as it does not work on our ci infrastructure

Modified:
    buildr/trunk/rakelib/doc.rake

Modified: buildr/trunk/rakelib/doc.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/doc.rake?rev=1395508&r1=1395507&r2=1395508&view=diff
==============================================================================
--- buildr/trunk/rakelib/doc.rake (original)
+++ buildr/trunk/rakelib/doc.rake Mon Oct  8 10:31:57 2012
@@ -13,6 +13,10 @@
 # License for the specific language governing permissions and limitations under
 # the License.
 
+# These libraries do not work on our CI infrastructure as the native libraries
+# are not compatible with version of the C++ library we are running there
+begin
+
 gem 'rdoc'
 require 'rdoc/task'
 desc 'Creates a symlink to rake' 's lib directory to support combined rdoc generation'
@@ -114,3 +118,8 @@ task 'clobber' do
   rm_f 'buildr.pdf'
   rm_f 'prince_errors.log'
 end
+
+rescue Exception => e
+# The doc tasks do not work on our CI infrastructure with jruby as the native libraries
+# are not compatible with version of the C++ library we are running there
+end
\ No newline at end of file