Skip to content

Commit dc5ef0f

Browse files
authored
Update build workflow to use larger macOS runner and set Java options (#253)
## Motivation and Context To speed-up CI: - Switch `runs-on` to `macos-latest-xlarge` for additional resources. - Add `JAVA_OPTS` environment variable for optimized memory and encoding settings during Gradle builds. ## How Has This Been Tested? <!-- Have you tested this in a real application? Which scenarios were tested? --> ## Types of changes <!-- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation update - [x] Build improvement ## Checklist <!-- Go over all the following points, and put an `x` in all the boxes that apply. --> - [ ] I have read the [MCP Documentation](https://modelcontextprotocol.io) - [ ] My code follows the repository's style guidelines - [ ] New and existing tests pass locally - [ ] I have added appropriate error handling - [ ] I have added or updated documentation as needed ## Additional context <!-- Add any other context, implementation notes, or design decisions -->
1 parent dbfb62b commit dc5ef0f

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)