mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-03-21 17:00:24 +00:00
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
This commit is contained in:
parent
e7a080d6e6
commit
6df60aff52
1 changed files with 5 additions and 1 deletions
6
Rakefile
6
Rakefile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue