-
Notifications
You must be signed in to change notification settings - Fork 0
143 lines (128 loc) · 4.82 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
name: 'Build'
on:
pull_request:
push:
branches:
- 'master'
workflow_dispatch:
env:
GRADLE_OPTS: -Dorg.gradle.daemon=true -Dorg.gradle.parallel=true -Dorg.gradle.welcome=never
GPG_SEC: ${{ secrets.PGP_SEC }}
GPG_PASSWORD: ${{ secrets.PGP_PASSWORD }}
OSSRH_USERNAME: ${{ secrets.SONATYPE_USER }}
OSSRH_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
jobs:
build:
name: 'Build (Java ${{ matrix.java-version }})'
runs-on: ubuntu-latest
strategy:
# We need multiple builds to run even if the 1st one is failing, because
# test failures may be Java-specific (or the tests themselves flaky).
#
# Java 8 is incompatible with `org.ajoberstar.reckon.settings`.
fail-fast: false
matrix:
java-version: [ '8', '11', '17' ]
# A possible workaround for <https://github.com/dorny/test-reporter/issues/168>.
permissions:
checks: write
contents: write
pull-requests: write
statuses: write
# Explicitly granted, necessary for the `publish-github` step.
packages: write
steps:
- uses: actions/checkout@v4
with:
# Fetch Git tags, so that semantic version can be calculated.
# Alternatively, run `git fetch --prune --unshallow --tags` as the
# next step, see
# https://github.com/actions/checkout/issues/206#issuecomment-607496604.
fetch-depth: 0
- name: 'Set up Java ${{ matrix.java-version }}'
uses: actions/setup-java@v3
with:
distribution: zulu
java-version: ${{ matrix.java-version }}
java-package: jdk+fx
- name: 'Execute Gradle build'
id: build
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: |
--continue
build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# This step needs a Git repository, so it's impossible to extract it
# into a separate job (or, otherwise, we'd need to upload the content
# of the whole `.git` folder as an artifact).
- name: 'JUnit Tests (dorny/test-reporter)'
uses: dorny/test-reporter@v1
if: ${{ always() }}
with:
name: 'JUnit Tests (dorny/test-reporter, Java ${{ matrix.java-version }})'
# Comma-separated values.
path: "**/build/test-results/*/TEST-*.xml"
reporter: java-junit
# Ignore the "Resource not accessible by integration" error when a PR
# originates from a non-collaborator. This is
# <https://github.com/dorny/test-reporter/issues/168> which may be
# potentially fixed with <https://github.com/dorny/test-reporter/pull/174>.
continue-on-error: true
- name: 'Upload test results'
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
name: xml-test-reports-java${{ matrix.java-version }}
path: |
**/build/test-results/*/TEST-*.xml
retention-days: 1
- name: 'Publish a snapshot to GitHub (Java 8 only)'
id: publish-github
if: ${{ github.event_name == 'push' && github.ref_type == 'branch' && github.ref == 'refs/heads/master' && matrix.java-version == 8 }}
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: |
-Preckon.stage=snapshot
publishAllPublicationsToGitHubRepository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: 'Publish a snapshot to Maven Central (Java 8 only)'
id: publish-sonatype
if: ${{ github.event_name == 'push' && github.ref_type == 'branch' && github.ref == 'refs/heads/master' && matrix.java-version == 8 }}
uses: gradle/gradle-build-action@v2
with:
gradle-version: wrapper
arguments: |
-Preckon.stage=snapshot
publishToSonatype
closeAndReleaseSonatypeStagingRepository
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
report:
name: 'Publish JUnit test results (Java ${{ matrix.java-version }})'
if: ${{ always() }}
needs: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java-version: [ '8', '11', '17' ]
permissions:
checks: write
pull-requests: write
steps:
- uses: actions/download-artifact@v3
if: ${{ always() }}
with:
name: xml-test-reports-java${{ matrix.java-version }}
# Uses Docker, that's why Linux-only.
- name: 'JUnit Tests (EnricoMi/publish-unit-test-result-action)'
uses: EnricoMi/publish-unit-test-result-action@v2
with:
check_name: 'JUnit Tests (EnricoMi/publish-unit-test-result-action, Java ${{ matrix.java-version }})'
files: |
**/build/test-results/*/TEST-*.xml