Skip to content

Commit 47e617e

Browse files
committed
reduce parallelism on publish nodes from 2 to 1
in a desperate attempt to fix the "There is insufficient memory for the Java Runtime Environment to continue" crashes, see scala#181
1 parent 657c4ed commit 47e617e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

attributes/worker.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
default["jenkinsHomes"]["/home/jenkins"]["in_demand_delay"] = 0 # launch worker immediately
9393
default["jenkinsHomes"]["/home/jenkins"]["idle_delay"] = 20 # take worker off-line after 20 min of idling (we're charged by the hour, so no rush)
9494

95-
default["jenkinsHomes"]["/home/jenkins"]["executors"] = lightWorker ? 2 : 3
95+
default["jenkinsHomes"]["/home/jenkins"]["executors"] = lightWorker ? 1 : 3
9696
default["jenkinsHomes"]["/home/jenkins"]["usage_mode"] = publisher ? "exclusive" : "normal"
9797
default["jenkinsHomes"]["/home/jenkins"]["labels"] = ["linux", publisher ? "publish": "public"]
9898

0 commit comments

Comments
 (0)