From 4f8266d8a2e30527658ab14ab4740f279bddf269 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eloy=20Dur=C3=A1n?= Date: Wed, 13 Nov 2013 17:59:37 +0100 Subject: [PATCH] =?UTF-8?q?[analyzer]=20Don=E2=80=99t=20try=20to=20open=20?= =?UTF-8?q?HTML=20after=20run=20on=20Jenkins=20CI.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 68d8f840..8dfd5ddb 100644 --- a/Rakefile +++ b/Rakefile @@ -62,7 +62,7 @@ task :build => targets.map { |x| "build:#{x}" } desc "Run the clang static analyzer against the source" task :analyze do options = [] - options << '--view' + options << '--view' unless ENV['JENKINS_URL'] options << '-disable-checker osx.cocoa.RetainCount' options << '--use-analyzer=/usr/bin/clang' options << '--use-cc=/usr/bin/clang --use-c++=/usr/bin/clang++'