Skip to content

Commit cb76533

Browse files
build: bump gradle from 8.10.1 to 8.12 (#731)
* build: bump gradle from 8.10.1 to 8.12 * build: enable parallel configuration cache load and store https://docs.gradle.org/8.11/release-notes.html#configuration-cache-improvements * build: disable html problem report generation https://docs.gradle.org/8.12/userguide/reporting_problems.html#sec:generated_html_report --------- Co-authored-by: ParanoidUser <5120290+ParanoidUser@users.noreply.github.com>
1 parent 07821e7 commit cb76533

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ jobs:
6868
--build-cache \
6969
--no-daemon \
7070
--scan \
71+
--no-problems-report \
7172
-DforkCount=${{ needs.fork.outputs.job_count }} \
7273
-DforkSid=${{ matrix.job_sid }}
7374
@@ -124,6 +125,7 @@ jobs:
124125
--build-cache \
125126
--no-daemon \
126127
--scan \
128+
--no-problems-report \
127129
-Pversion=${{ format('{0}+{1}', env.VERSION, github.RUN_NUMBER) }} \
128130
-Dsonar.host.url=https://sonarcloud.io \
129131
-Dsonar.token=${{ secrets.SONAR_TOKEN }} \

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
# https://docs.gradle.org/current/userguide/build_environment.html
33
# Specifies the JVM arguments used for the daemon process.
44
# The setting is particularly useful for tweaking memory settings.
5-
org.gradle.jvmargs=-Xmx3g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError
5+
org.gradle.jvmargs=-Xmx3g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError
6+
org.gradle.configuration-cache.parallel=true

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)