Skip to content

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 7e8d3c1 commit cdf7781
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 @@ -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
Expand Down

0 comments on commit cdf7781

Please sign in to comment.