Skip to content

Commit b2fc929

Browse files
kpavlovdevcrocod
authored andcommitted
Update build workflow to use larger macOS runner and set Java options
- Switch `runs-on` to `macos-latest-xlarge` for additional resources. - Add `JAVA_OPTS` environment variable for optimized memory and encoding settings during Gradle builds.
1 parent dbfb62b commit b2fc929

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414

1515
jobs:
1616
validate-pr:
17-
runs-on: macos-latest
17+
runs-on: macos-latest-xlarge
1818
name: Validate PR
1919
steps:
2020
- uses: actions/checkout@v5
@@ -33,6 +33,8 @@ jobs:
3333

3434
- name: Build with Gradle
3535
run: ./gradlew clean ktlintCheck build koverLog koverHtmlReport
36+
env:
37+
JAVA_OPTS: "-Xmx8g -Dfile.encoding=UTF-8 -Djava.awt.headless=true -Dkotlin.daemon.jvm.options=-Xmx6g"
3638

3739
- name: Upload Reports
3840
if: always()

0 commit comments

Comments
 (0)