File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4646 else
4747 ./gradlew ${{matrix.gradle-argument}} --info --stacktrace
4848 fi
49- - name : Publish Test Results
50- uses : EnricoMi/publish-unit-test-result-action@v2.23.0
51- if : always() && matrix.label != 'check' && matrix.label != 'jcstress'
52- with :
53- files : |
54- **/build/test-results/*/TEST-*.xml
5549 - name : Upload Coverage XML Report
5650 uses : actions/upload-artifact@v4
5751 if : always() && matrix.label == 'java25'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -47,11 +47,11 @@ jobs:
4747 let prNumber = (context.payload.workflow_run.pull_requests || [])[0]?.number;
4848 if (!prNumber) {
4949 const headBranch = context.payload.workflow_run.head_branch;
50- const headRepo = context.payload.workflow_run.head_repository.full_name ;
50+ const headOwner = context.payload.workflow_run.head_repository.owner.login ;
5151 const { data: prs } = await github.rest.pulls.list({
5252 owner: context.repo.owner,
5353 repo: context.repo.repo,
54- head: `${headRepo }:${headBranch}`,
54+ head: `${headOwner }:${headBranch}`,
5555 state: 'open',
5656 });
5757 if (prs.length > 0) {
Original file line number Diff line number Diff line change @@ -29,12 +29,12 @@ jobs:
2929 runs-on : ubuntu-latest
3030 steps :
3131 - name : Checkout
32- uses : actions/checkout@v4
33- - name : Set up JDK 21
34- uses : actions/setup-java@v4
32+ uses : actions/checkout@v6
33+ - name : Set up JDK 25
34+ uses : actions/setup-java@v5
3535 with :
36- distribution : ' temurin '
37- java-version : ' 21 '
36+ distribution : ' corretto '
37+ java-version : ' 25 '
3838 - name : Generate performance page
3939 run : ./gradlew :performance-results-page:generatePerformancePage
4040 - name : Setup Pages
You can’t perform that action at this time.
0 commit comments