Skip to content

Commit d735f89

Browse files
authored
Merge pull request #48 from build-extensions-oss/restrictNumberOfBranches
limit number of branches for Renovate
2 parents db55e99 + f4307fc commit d735f89

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

renovate.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
"config:recommended"
55
],
66
"description": [
7-
"We specify more operating memory for Gradle run, because default 0.5Gb isn't enough to quickly precompile the Gradle code. Renovate allocates 3Gb RAM and 15 GB disk space"
7+
"We specify more operating memory for Gradle run, because default 0.5Gb isn't enough to quickly precompile the Gradle code. Renovate allocates 3Gb RAM and 15 GB disk space",
8+
"We also limit 'branchConcurrentLimit' to 4, because Renovate spends 4 minutes per each branch (why it is so slow?) and has 30 minutes global timeout"
89
],
910
"env": {
10-
"GRADLE_OPTS": "-Dorg.gradle.jvmargs=-Xmx2500M -Dkotlin.compiler.execution.strategy=\"in-process\" -Dorg.gradle.daemon=false"
11-
}
11+
"GRADLE_OPTS": "-Dorg.gradle.jvmargs=-Xmx2500M -Dkotlin.compiler.execution.strategy=\"in-process\""
12+
},
13+
"branchConcurrentLimit": 4
1214
}

0 commit comments

Comments
 (0)