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

Commit 6df60af

Browse files
committed
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: travis-ci/travis-ci#845
1 parent e7a080d commit 6df60af

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Rakefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,11 @@ task :minify => [:init, :concat, :concat_scenario, :concat_jstd_scenario_adapter
124124
'angular-bootstrap.js',
125125
'angular-bootstrap-prettify.js'
126126
].each do |file|
127-
fork { closure_compile(file) }
127+
unless ENV['TRAVIS']
128+
fork { closure_compile(file) }
129+
else
130+
closure_compile(file)
131+
end
128132
end
129133

130134
Process.waitall

0 commit comments

Comments
 (0)