From cdf7781878dc43de85e7a72fcfce0105d93db621 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Mon, 21 Jan 2013 07:43:41 -0800 Subject: chore(Rakefile): skip build parallelization on Travis Due to a infrastructure change on Travis starting JVMs in forked processes doesn't currently work. Since we don't really care that much about the build speed on Travis, I'm going to disable it there. Related issue: https://github.com/travis-ci/travis-ci/issues/845 --- Rakefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 1b443e2b..069579e5 100644 --- a/Rakefile +++ b/Rakefile @@ -105,7 +105,11 @@ task :minify => [:init, :concat, :concat_scenario] do 'angular-bootstrap.js', 'angular-bootstrap-prettify.js' ].each do |file| - fork { closure_compile(file) } + unless ENV['TRAVIS'] + fork { closure_compile(file) } + else + closure_compile(file) + end end Process.waitall -- cgit v1.2.3