Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ permissions:
pull-requests: write # only required if `comment: true` was enabled

jobs:
validate-pr:
build:
runs-on: macos-latest-xlarge
name: Validate PR
name: Build
timeout-minutes: 20
env:
JAVA_OPTS: "-Xmx8g -Dfile.encoding=UTF-8 -Djava.awt.headless=true -Dkotlin.daemon.jvm.options=-Xmx6g"
Expand Down Expand Up @@ -75,15 +75,15 @@ jobs:
if: ${{ !cancelled() }} # always run even if the previous step fails
with:
annotate_only: true
comment: true
comment: ${{ github.repository == 'modelcontextprotocol/kotlin-sdk' }}
detailed_summary: true
flaky_summary: true
group_suite: true
include_empty_in_summary: false
include_time_in_summary: true
report_paths: '**/test-results/**/TEST-*.xml'
truncate_stack_traces: false
updateComment: true
updateComment: ${{ github.repository == 'modelcontextprotocol/kotlin-sdk' }}

- name: Disable Auto-Merge on Fail
if: failure() && github.event_name == 'pull_request'
Expand Down
Loading