-
Notifications
You must be signed in to change notification settings - Fork 12
419 lines (406 loc) · 12.3 KB
/
main.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
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
name: Main
on:
push:
branches: [main]
tags: [v*]
pull_request: {}
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-22.04
timeout-minutes: 5
name: Scala Build
outputs:
version: ${{ steps.save-version.outputs.version }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/setup-action@v1
with:
jvm: adoptium:1.21.0.2
apps: sbt
- name: Cache SBT
uses: actions/cache@v4
with:
path: |
~/.ivy2/cache
~/.cache/coursier
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
- name: Cache Build Files
uses: actions/cache@v4
with:
path: |
**/target
key: ${{ runner.os }}-build-${{ github.sha }}
- name: Build
run: sbt compile js/fullLinkJS cli/assembly
- id: save-version
name: Save Version
run: |
version="$(sbt --error "print coreJVM/releaseVersion" | head -n1)"
echo -n "version=$version"
echo -n "version=$version" >> $GITHUB_OUTPUT
- uses: actions/upload-artifact@v4
with:
path: modules/recheck-js/target/scala-2.13/recheck-js-opt/recheck.js
name: recheck.js
- uses: actions/upload-artifact@v4
with:
path: modules/recheck-cli/target/scala-2.13/recheck.jar
name: recheck.jar
scala-lint:
needs: [build]
runs-on: ubuntu-22.04
timeout-minutes: 5
name: Scala Lint
steps:
- uses: actions/checkout@v4
- uses: coursier/setup-action@v1
with:
jvm: adoptium:1.21.0.2
apps: sbt
- name: Cache SBT
uses: actions/cache@v4
with:
path: |
~/.ivy2/cache
~/.cache/coursier
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
- name: Cache Build Files
uses: actions/cache@v4
with:
path: |
**/target
key: ${{ runner.os }}-build-${{ github.sha }}
- name: Lint
run: sbt scalafmtCheckAll scalafmtSbtCheck 'scalafixAll --check'
node-lint:
runs-on: ubuntu-22.04
timeout-minutes: 5
name: Node Lint
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install
run: yarn install --frozen-lockfile
- name: Lint
run: |
yarn lerna run lint
- name: Type Check
run: |
yarn lerna run typecheck
scala-test:
runs-on: ubuntu-22.04
timeout-minutes: 5
name: Scala Test
steps:
- uses: actions/checkout@v4
- uses: coursier/setup-action@v1
with:
jvm: adoptium:1.21.0.2
apps: sbt
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Cache SBT
uses: actions/cache@v4
with:
path: |
~/.ivy2/cache
~/.cache/coursier
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
- name: Test
run: sbt coverage test coverageAggregate
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
node-test:
needs: [build, node-lint]
runs-on: ubuntu-22.04
timeout-minutes: 5
strategy:
matrix:
node: [ 18, 20, 21 ]
name: Node v${{ matrix.node }} Test
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install
run: yarn install --frozen-lockfile
- uses: actions/download-artifact@v4
with:
name: recheck.js
path: modules/recheck-js/target/scala-2.13/recheck-js-opt/
- uses: actions/download-artifact@v4
with:
name: recheck.jar
path: modules/recheck-cli/target/scala-2.13/
- name: Build
run: yarn lerna run build
- name: Test
# It needs two `--` actually: one is for Yarn and the latter is for Lerna.
run: yarn lerna run test -- -- --coverage
- uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
native-build:
needs: [build]
if: github.ref_name == 'main' || startsWith(github.ref, 'refs/tags/')
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14, ubuntu-22.04, windows-2022]
include:
- os: macos-12
artifact_filename: recheck-darwin-x64
local_path: modules/recheck-cli/target/native-image/recheck
- os: macos-14
artifact_filename: recheck-darwin-arm64
local_path: modules/recheck-cli/target/native-image/recheck
- os: ubuntu-22.04
artifact_filename: recheck-linux-x64
local_path: modules/recheck-cli/target/native-image/recheck
- os: windows-2022
artifact_filename: recheck-win32-x64.exe
local_path: modules/recheck-cli/target/native-image/recheck.exe
runs-on: ${{ matrix.os }}
timeout-minutes: 5
name: Scala Build (Native Binary)
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/setup-action@v1
with:
jvm: adoptium:1.21.0.2
apps: sbt
- name: Cache SBT
uses: actions/cache@v4
with:
path: |
~/.ivy2/cache
~/.cache/coursier
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
- name: Cache Build Files
uses: actions/cache@v4
with:
path: |
**/target
key: ${{ runner.os }}-build-${{ github.sha }}
- if: matrix.os != 'windows-2022'
run: sbt cli/nativeImage
- if: matrix.os == 'windows-2022'
name: Run sbt cli/nativeImage
shell: cmd
run: >-
"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat" && sbt cli/nativeImage
- uses: actions/upload-artifact@v4
with:
path: ${{ matrix.local_path }}
name: ${{ matrix.artifact_filename }}
maven-release:
needs: [build, scala-test]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-22.04
timeout-minutes: 5
name: Publish to Maven Central
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/setup-action@v1
with:
jvm: adoptium:1.21.0.2
apps: sbt
- name: Cache SBT
uses: actions/cache@v4
with:
path: |
~/.ivy2/cache
~/.cache/coursier
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
- name: Cache Build Files
uses: actions/cache@v4
with:
path: |
**/target
key: ${{ runner.os }}-build-${{ github.sha }}
- name: Publish
run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
npm-release:
needs: [build, native-build, node-test]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-22.04
timeout-minutes: 5
name: Publish to NPM
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/setup-action@v1
with:
jvm: adoptium:1.21.0.2
apps: sbt
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
registry-url: 'https://registry.npmjs.org'
- name: Cache SBT
uses: actions/cache@v4
with:
path: |
~/.ivy2/cache
~/.cache/coursier
~/.sbt
key: ${{ runner.os }}-sbt-${{ hashFiles('**/*.sbt') }}
- name: Cache Build Files
uses: actions/cache@v4
with:
path: |
**/target
key: ${{ runner.os }}-build-${{ github.sha }}
- name: Install
run: yarn install --frozen-lockfile
- uses: actions/download-artifact@v4
with:
name: recheck.js
path: modules/recheck-js/target/scala-2.13/recheck-js-opt/
- uses: actions/download-artifact@v4
with:
name: recheck.jar
path: packages/recheck-jar/
- uses: actions/download-artifact@v4
with:
name: recheck-darwin-x64
path: packages/recheck-macos-x64/
- uses: actions/download-artifact@v4
with:
name: recheck-darwin-arm64
path: packages/recheck-macos-arm64/
- uses: actions/download-artifact@v4
with:
name: recheck-linux-x64
path: packages/recheck-linux-x64/
- uses: actions/download-artifact@v4
with:
name: recheck-win32-x64.exe
path: packages/recheck-windows-x64/
- name: Build
run: NODE_ENV=production yarn lerna run build
- name: Publish (beta)
if: contains(github.ref, '-beta')
run: yarn lerna publish --dist-tag next ${{ needs.build.outputs.version }} --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish
if: "!contains(github.ref, '-beta')"
run: yarn lerna publish ${{ needs.build.outputs.version }} --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
release:
needs: [maven-release, npm-release]
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-22.04
timeout-minutes: 5
name: Publish GitHub Release
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: recheck.jar
path: packages/recheck-jar/
- uses: actions/download-artifact@v4
with:
name: recheck-darwin-x64
path: packages/recheck-macos-x64/
- uses: actions/download-artifact@v4
with:
name: recheck-darwin-arm64
path: packages/recheck-macos-arm64/
- uses: actions/download-artifact@v4
with:
name: recheck-linux-x64
path: packages/recheck-linux-x64/
- uses: actions/download-artifact@v4
with:
name: recheck-win32-x64.exe
path: packages/recheck-windows-x64/
- name: Rename files
run: |
mv packages/recheck-jar/recheck.jar recheck.jar
mv packages/recheck-macos-x64/recheck recheck-macos-x64
mv packages/recheck-macos-arm64/recheck recheck-macos-arm64
mv packages/recheck-linux-x64/recheck recheck-linux-x64
mv packages/recheck-windows-x64/recheck.exe recheck-windows-x64.exe
- name: Release
uses: softprops/action-gh-release@v2
with:
files: |
recheck.jar
recheck-macos-x64
recheck-macos-arm64
recheck-linux-x64
recheck-windows-x64.exe
gh-pages-build:
needs: [build]
if: github.ref_name == 'main'
runs-on: ubuntu-22.04
timeout-minutes: 5
name: Build website
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- uses: actions/download-artifact@v4
with:
name: recheck.js
path: modules/recheck-js/target/scala-2.13/recheck-js-opt/
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: |
NODE_ENV=production yarn workspace recheck build
RECHECK_VERSION=${{ needs.build.outputs.version }} yarn workspace website doc
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
with:
path: website/build
gh-pages-deploy:
needs: [gh-pages-build]
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
timeout-minutes: 5
name: Deploy to GitHub Pages
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4