Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
chore(Rakefile): skip build parallelization on Travis
Browse files Browse the repository at this point in the history
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: travis-ci/travis-ci#845
  • Loading branch information
IgorMinar committed Jan 21, 2013
1 parent e7a080d commit 6df60af
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,11 @@ task :minify => [:init, :concat, :concat_scenario, :concat_jstd_scenario_adapter
'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
Expand Down

0 comments on commit 6df60af

Please sign in to comment.