-
Notifications
You must be signed in to change notification settings - Fork 1
285 lines (275 loc) · 8.73 KB
/
build.yml
File metadata and controls
285 lines (275 loc) · 8.73 KB
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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
name: Build
on:
push:
branches:
- "**"
paths-ignore:
- ".github/ISSUE_TEMPLATE/*.yml"
- ".gitignore"
- "CONTRIBUTING.md"
- "LICENSE"
- "NOTICE"
- "README.md"
pull_request:
workflow_dispatch:
jobs:
build-windows:
name: Build Windows
strategy:
fail-fast: false
matrix:
platform:
- name: windows
arch: x86_64
runs-on: windows-2022
- name: windows
arch: aarch64
runs-on: windows-2022
runs-on: ${{ matrix.platform.runs-on }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
name: Checkout Repository
- uses: ./.github/actions/prepare-windows
name: Prepare Windows
- uses: ./.github/actions/setup-gradle
with:
gradle-cache-read-only: ${{ github.event_name == 'pull_request' }}
name: Setup Gradle
- uses: ./.github/actions/build
with:
platform-name: ${{ matrix.platform.name }}
platform-arch: ${{ matrix.platform.arch }}
name: Build
test-windows:
name: Test Windows
needs: build-windows
strategy:
fail-fast: false
matrix:
platform:
- name: windows
arch: x86_64
runs-on: windows-2022
- name: windows
arch: x86_64
runs-on: windows-2025
- name: windows
arch: aarch64
runs-on: windows-11-arm
runs-on: ${{ matrix.platform.runs-on }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
name: Checkout Repository
- uses: ./.github/actions/setup-gradle
name: Setup Gradle
- uses: ./.github/actions/test
with:
platform-name: ${{ matrix.platform.name }}
platform-arch: ${{ matrix.platform.arch }}
name: Test
build-linux:
name: Build Linux
strategy:
fail-fast: false
matrix:
platform:
- name: linux
arch: aarch32
runs-on: ubuntu-22.04
- name: linux
arch: aarch64
runs-on: ubuntu-22.04
- name: linux
arch: x86_64
runs-on: ubuntu-22.04
runs-on: ${{ matrix.platform.runs-on }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
name: Checkout Repository
- uses: ./.github/actions/prepare-linux
with:
platform-arch: ${{ matrix.platform.arch }}
name: Prepare Linux
- uses: ./.github/actions/setup-gradle
with:
gradle-cache-read-only: ${{ github.event_name == 'pull_request' }}
name: Setup Gradle
- uses: ./.github/actions/build
with:
platform-name: ${{ matrix.platform.name }}
platform-arch: ${{ matrix.platform.arch }}
name: Build
test-linux:
name: Test Linux
needs: build-linux
strategy:
fail-fast: false
matrix:
platform:
- name: linux
arch: aarch32
runs-on: ubuntu-22.04-arm
java-arch: armv7
- name: linux
arch: aarch32
runs-on: ubuntu-24.04-arm
java-arch: armv7
- name: linux
arch: aarch64
runs-on: ubuntu-22.04-arm
java-arch: aarch64
- name: linux
arch: aarch64
runs-on: ubuntu-24.04-arm
java-arch: aarch64
- name: linux
arch: x86_64
runs-on: ubuntu-22.04
java-arch: x64
- name: linux
arch: x86_64
runs-on: ubuntu-24.04
java-arch: x64
runs-on: ${{ matrix.platform.runs-on }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
name: Checkout Repository
- uses: ./.github/actions/setup-gradle
with:
java-architecture: ${{ matrix.platform.java-arch }}
name: Setup Gradle
- uses: ./.github/actions/test
with:
platform-name: ${{ matrix.platform.name }}
platform-arch: ${{ matrix.platform.arch }}
name: Test
build-macos:
name: Build macOS
strategy:
fail-fast: false
matrix:
platform:
- name: macos
arch: x86_64
runs-on: macos-14
- name: macos
arch: aarch64
runs-on: macos-14
runs-on: ${{ matrix.platform.runs-on }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
name: Checkout Repository
- uses: ./.github/actions/prepare-macos
name: Prepare macOS
- uses: ./.github/actions/setup-gradle
with:
gradle-cache-read-only: ${{ github.event_name == 'pull_request' }}
name: Setup Gradle
- uses: ./.github/actions/build
with:
platform-name: ${{ matrix.platform.name }}
platform-arch: ${{ matrix.platform.arch }}
name: Build
test-macos:
name: Test macOS
needs: build-macos
strategy:
fail-fast: false
matrix:
platform:
- name: macos
arch: x86_64
runs-on: macos-15-intel
- name: macos
arch: aarch64
runs-on: macos-14
- name: macos
arch: aarch64
runs-on: macos-15
- name: macos
arch: aarch64
runs-on: macos-26
runs-on: ${{ matrix.platform.runs-on }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
name: Checkout Repository
- uses: ./.github/actions/setup-gradle
name: Setup Gradle
- uses: ./.github/actions/test
with:
platform-name: ${{ matrix.platform.name }}
platform-arch: ${{ matrix.platform.arch }}
name: Test
detect-release:
name: Detect Release
needs:
- test-windows
- test-linux
- test-macos
if: ${{ success() && github.repository == 'Kas-tle/webrtc-java' && github.ref_name == 'master' }}
runs-on: ubuntu-22.04
outputs:
unreleased: ${{ steps.version.outputs.unreleased }}
version: ${{ steps.version.outputs.version }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
with:
fetch-depth: "0"
name: Checkout Repository
- name: Get Release Version
id: version
run: |
version=$(cat gradle.properties | grep version= | cut -d'=' -f2)
echo "version=$version" >> $GITHUB_OUTPUT
unreleased=$(git show-ref --tags --verify --quiet "refs/tags/${version}" && echo false || echo true)
echo "unreleased=$unreleased" >> $GITHUB_OUTPUT
shell: bash
release:
name: Release and Publish
needs:
- detect-release
if: ${{ success() && github.repository == 'Kas-tle/webrtc-java' && github.ref_name == 'master' && needs.detect-release.outputs.unreleased == 'true' }}
runs-on: ubuntu-22.04
outputs:
release_id: ${{ steps.release.outputs.releaseID }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
name: Checkout Repository
- uses: ./.github/actions/setup-gradle
name: Setup Gradle
- uses: ./.github/actions/publish
env:
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
name: Publish to Maven Central
- uses: Kas-tle/base-release-action@b89ab10da9dfaa0b5fb0ca9e77679c7c7d1297f8
id: release
with:
files: |
webrtc/build/libs/*.jar
native-staging/webrtc-java-jni-*/*.jar
appID: ${{ secrets.RELEASE_APP_ID }}
appPrivateKey: ${{ secrets.RELEASE_APP_PK }}
discordWebhook: ${{ secrets.DISCORD_WEBHOOK }}
tagBase: ${{ needs.detect-release.outputs.version }}
tagIncrement: false
tagSeparator: ""
tagPrefix: ""
releaseName: ${{ needs.detect-release.outputs.version }}
releaseBodyDependencyUsage: "java"
releaseBodyDependencyJavaGroupId: "dev.kastle.webrtc"
releaseBodyDependencyJavaArtifactId: "webrtc-java"
name: Create Release
upload-logs:
name: Upload Logs
runs-on: ubuntu-22.04
needs: release
if: ${{ success() && github.repository == 'Kas-tle/webrtc-java' && github.ref_name == 'master' }}
steps:
- uses: Kas-tle/release-build-log-action@1b57448eaf9476e6e05450e4ea240449eac2c0d2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
releaseID: ${{ needs.release.outputs.release_id }}
name: Upload Build Logs to Release