-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
605 lines (574 loc) · 19.5 KB
/
tests-code.yml
File metadata and controls
605 lines (574 loc) · 19.5 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
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
name: Source Code Tests
on:
push:
branches:
- main
- main-release
pull_request:
merge_group:
workflow_dispatch:
env:
AstrophysicsDataSystemAPIKey: ${{ secrets.AstrophysicsDataSystemAPIKey_FOR_TESTS }}
BiodiversityHeritageApiKey: ${{ secrets.BiodiversityHeritageApiKey_FOR_TESTS}}
IEEEAPIKey: ${{ secrets.IEEEAPIKey_FOR_TESTS }}
MedlineAPiKey: ${{ secrets.MedlineApiKey_FOR_TESTS }}
OpenAlexApiKey: ${{ secrets.OpenAlexApiKey_FOR_TESTS }}
SpringerNatureAPIKey: ${{ secrets.SPRINGERNATUREAPIKEY_FOR_TESTS }}
GRADLE_OPTS: -Xmx4g
JAVA_OPTS: -Xmx4g
concurrency:
group: "${{ github.workflow }}-${{ github.head_ref || github.ref }}"
cancel-in-progress: true
permissions:
# required for publish.yml
actions: write
contents: read
pull-requests: write
jobs:
upload-pr-number:
if: github.event_name == 'pull_request'
runs-on: ubuntu-slim
steps:
- name: Create pr_number.txt
run: echo "${{ github.event.number }}" > pr_number.txt
- uses: actions/upload-artifact@v7
with:
name: pr_number
path: pr_number.txt
checkstyle:
name: Checkstyle
# too slow on ubuntu-slim
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- name: Run checkstyle using gradle
run: gradle checkstyleMain checkstyleTest checkstyleJmh
dependencyscopes:
name: Dependency Scopes
# too slow on ubuntu-slim
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- name: Run checkAllModuleInfo using gradle
run: gradle checkAllModuleInfo
openrewrite:
name: OpenRewrite
# too slow on ubuntu-slim
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- name: Run OpenRewrite
run: |
gradle --no-configuration-cache :rewriteRun
- name: Output diff
if: failure()
run: |
cat /home/runner/work/jabref/jabref/build/reports/rewrite/rewrite.patch
format:
# ubuntu-slim doesn't offer docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: leventeBajczi/intellij-idea-format@master
with:
file-mask: "*.java"
settings-file: ".idea/codeStyles/Project.xml"
- name: Undo JBang changes # IntelliJ issue: https://youtrack.jetbrains.com/issue/IDEA-https://youtrack.jetbrains.com/issue/IDEA-384956/Skip-formatting-of-shebang-headers/Skip-formatting-of-shebang-headers
run: git checkout HEAD -- jablib-examples/jbang/*.java
# job should fail in case there are changes
- name: Check if any files changed
run: git diff --exit-code
format-javadoc:
# too slow on ubuntu-slim
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
path: 'jabref'
- uses: actions/checkout@v6
with:
repository: 'rmuller/Convert2MarkdownJavadoc'
path: 'Convert2MarkdownJavadoc'
- name: Setup JDK
uses: actions/setup-java@v5
with:
java-version: '24'
distribution: 'corretto'
check-latest: true
- run: |
cd Convert2MarkdownJavadoc
java Convert2MarkdownJavadoc.java ../jabref
- name: Check if any files changed
run: |
cd jabref
git diff --exit-code
modernizer:
name: Modernizer
# too slow on ubuntu-slim
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- name: Run modernizer
run: |
# enable failing of this task if modernizer complains
# sed -i "s/failOnViolations = false/failOnViolations = true/" build.gradle.kts
gradle modernizer
markdown:
name: Markdown
runs-on: ubuntu-slim
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'false'
show-progress: 'false'
- name: markdownlint-cli2-action
uses: DavidAnson/markdownlint-cli2-action@v23
with:
globs: |
*.md
docs/**/*.md
changelog:
name: CHANGELOG.md
# JBang needs a JDK
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'false'
show-progress: 'false'
- name: Generate JBang cache key
id: cache-key
shell: bash
run: |
echo "cache_key=jbang-heylogs-$(date +%F)" >> $GITHUB_OUTPUT
- name: Use cache
uses: actions/cache/restore@v5
with:
path: ~/.jbang
key: ${{ steps.cache-key.outputs.cache_key }}
restore-keys:
jbang-heylogs-
- name: Setup JBang
uses: jbangdev/setup-jbang@main
- name: Lint CHANGELOG.md
run: |
# run heylogs verification
jbang com.github.nbbrd.heylogs:heylogs-cli:0.16.1:bin check CHANGELOG.md | tee heylogs.txt || true
# We have two acceptable errors
if ! grep -q "1 problem" heylogs.txt; then
{
echo "heylogs<<EOF"
cat heylogs.txt
echo "EOF"
} >> "$GITHUB_OUTPUT"
exit 1
fi
changelog-unreleased-only:
if: github.event_name == 'pull_request'
name: CHANGELOG.md - only unreleased touched
runs-on: ubuntu-slim
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'false'
show-progress: 'false'
fetch-depth: 0
- name: Cache clparse jar
id: cache-clparse
uses: actions/cache/restore@v5
with:
path: /tmp/clparse
key: clparse-0.9.1
- name: unzip
if: steps.cache-clparse.outputs.cache-hit != 'true'
run: |
cd /tmp
curl -LO https://github.com/marcaddeo/clparse/releases/download/0.9.1/clparse-0.9.1-x86_64-unknown-linux-musl.tar.gz
tar xzvf clparse-0.9.1-x86_64-unknown-linux-musl.tar.gz
- name: Install clparse
run: sudo mv /tmp/clparse /usr/local/bin/clparse
- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: jq
version: 1.0
- name: Check CHANGELOG.md diff
run: |
diff \
<(git show origin/main:CHANGELOG.md | clparse --format=json --separator=– - | jq '.releases[] | select(.version != null)') \
<(git show HEAD:CHANGELOG.md | clparse --format=json --separator=– - | jq '.releases[] | select(.version != null)')
javadoc:
name: JavaDoc
# Sometimes takes longer than 15 minutes, therefore not ubuntu-slim
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- run: gradle javadoc
tests:
name: "Unit tests – ${{ matrix.module }}"
runs-on: ubuntu-latest
strategy:
matrix:
module: [ jablib, jabkit, jabsrv, jabgui ]
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- name: Run ${{ matrix.module }} tests
run: xvfb-run --auto-servernum gradle :${{ matrix.module }}:check -x checkstyleJmh -x checkstyleMain -x checkstyleTest -x modernizer
env:
CI: "true"
- name: Prepare format failed test results
if: failure()
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: xml-twig-tools xsltproc
version: 1.0
- name: Format failed test results
if: failure()
run: scripts/after-failure.sh
tests-windows:
name: "Unit tests (Windows)"
if: >
github.repository_owner == 'JabRef' &&
(
github.event_name == 'push' ||
github.event_name == 'workflow_dispatch' ||
(github.event_name == 'pull_request' && startsWith(github.event.pull_request.title, 'Update Gradle Wrapper'))
)
runs-on: windows-latest
strategy:
matrix:
module: [ jablib ]
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- name: Run ${{ matrix.module }} tests
run: gradle :${{ matrix.module }}:check -x checkstyleJmh -x checkstyleMain -x checkstyleTest -x modernizer
env:
CI: "true"
tests-windows-file-based:
name: "Unit tests (Windows) - file-based"
runs-on: windows-latest
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: 'true'
show-progress: 'false'
- name: Detect changed windows-related classes
id: changed-windows-related-files
uses: tj-actions/changed-files@v47
with:
files: |
jablib/src/main/java/org/jabref/logic/citationstyle/CSLStyleUtils.java
jablib/src/test/java/org/jabref/logic/citationstyle/CSLStyleUtilsTest.java
jablib/src/main/java/org/jabref/logic/exporter/AcademicPagesExporter.java
jablib/src/test/java/org/jabref/logic/exporter/AcademicPagesExporterTest.java
- uses: ./.github/actions/setup-gradle
if: steps.changed-windows-related-files.outputs.any_changed == 'true'
- name: Run jablib tests
if: steps.changed-windows-related-files.outputs.any_changed == 'true'
run: gradle :jablib:check -x checkstyleJmh -x checkstyleMain -x checkstyleTest -x modernizer
env:
CI: "true"
tests-jabkit-smoke:
name: "JabKit Smoke Test"
runs-on: ubuntu-slim
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- run: gradle :jabkit:runJabKitPortableSmokeTest
databasetests:
if: (github.repository_owner == 'JabRef')
name: Database tests
runs-on: ubuntu-latest
services:
postgres:
image: postgres:13-alpine
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Shutdown Ubuntu MySQL
run: sudo service mysql stop # Shutdown the Default MySQL to save memory, "sudo" is necessary, please do not remove it
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- name: Run tests on PostgreSQL
run: gradle :jablib:databaseTest --rerun-tasks
env:
CI: "true"
DBMS: "postgresql"
publish:
if: github.ref == 'refs/heads/main'
uses: ./.github/workflows/publish.yml
secrets:
KOPPOR_SIGNING_SECRETKEYRINGFILE_BASE64: ${{ secrets.KOPPOR_SIGNING_SECRETKEYRINGFILE_BASE64 }}
KOPPOR_SIGNING_KEYID: ${{ secrets.KOPPOR_SIGNING_KEYID }}
KOPPOR_SIGNING_PASSWORD: ${{ secrets.KOPPOR_SIGNING_PASSWORD }}
KOPPOR_MAVENCENTRALUSERNAME: ${{ secrets.KOPPOR_MAVENCENTRALUSERNAME }}
KOPPOR_MAVENCENTRALPASSWORD: ${{ secrets.KOPPOR_MAVENCENTRALPASSWORD }}
jbang-main:
name: JBang (main)
runs-on: ubuntu-slim
needs: publish
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
fetch-depth: 0
submodules: 'false'
show-progress: 'false'
- name: Detect changed jablib classes
id: changed-jablib-files
uses: tj-actions/changed-files@v47
with:
files: |
.jbang/*.java
jablib/src/main/java/**/*.java
jablib-examples/jbang/**/*.java
files_ignore: |
jablib/src/main/java/**/*-*.java
- uses: ./.github/actions/setup-gradle
if: steps.changed-jablib-files.outputs.any_changed != 'true'
- name: Setup JDK
if: steps.changed-jablib-files.outputs.any_changed != 'true'
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'corretto'
check-latest: true
# Build all JBang scripts
- run: |
for f in .jbang/*.java; do
echo "Building $f..."
jbang build --fresh "$f"
done
if: steps.changed-jablib-files.outputs.any_changed != 'true'
- run: |
for f in jablib-examples/jbang/*.java; do
echo "Building $f..."
jbang build --fresh "$f"
done
if: steps.changed-jablib-files.outputs.any_changed != 'true'
# *Launcher.java should support "--help"
- run: jbang run .jbang/JabKitLauncher.java --help
if: steps.changed-jablib-files.outputs.any_changed != 'true'
- run: jbang run .jbang/JabLsLauncher.java --help
if: steps.changed-jablib-files.outputs.any_changed != 'true'
- run: jbang run .jbang/JabSrvLauncher.java --help
if: steps.changed-jablib-files.outputs.any_changed != 'true'
jbang-pr:
name: JBang (PR)
runs-on: ubuntu-slim
# does not need publish, because the JBang scripts are modified
if: github.ref != 'refs/heads/main'
strategy:
fail-fast: false
matrix:
script: [ .jbang/JabKitLauncher.java, .jbang/JabLsLauncher.java, .jbang/JabSrvLauncher.java, jablib-examples/jbang/doi_to_bibtex.java, jablib-examples/jbang/ieee_pdf_references_to_bibtex.java ]
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'false'
show-progress: 'false'
- name: Detect changed jablib classes
id: changed-jablib-files
uses: tj-actions/changed-files@v47
with:
files: |
.jbang/*.java
jabkit/src/main/java/**/*.java
jablib/src/main/java/**/*.java
jablib-examples/jbang/**/*.java
files_ignore: |
jablib/src/main/java/**/*-*.java
- uses: ./.github/actions/setup-gradle
- name: Setup JDK
uses: actions/setup-java@v5
with:
java-version: '25'
distribution: 'corretto'
check-latest: true
- name: Modify ${{ matrix.script }} to include changed classes
shell: bash
# We always run, because changes in jabls, jabsrv also could cause JBang to fail
run: |
# We modify the JBang scripts directly to avoid issues with relative paths
for f in ${{ steps.changed-jablib-files.outputs.all_changed_files }}; do
case "$f" in
.jbang/*)
# skip scripts
continue
;;
jablib-examples/*)
# skip scripts
continue
;;
jabkit/*)
# only JabKit needs its modified sources if jabkit was modified
if [ "${{ matrix.script }}" != ".jbang/JabKitLauncher.java" ]; then
continue
fi
;;
esac
if [[ "${{ matrix.script }}" == .jbang/* ]]; then
echo "//SOURCES ../$f" >> "${{ matrix.script }}"
else
echo "//SOURCES ../../$f" >> "${{ matrix.script }}"
fi
done
- run: cat ${{ matrix.script }}
- run: jbang build "${{ matrix.script }}"
shell: bash
- run: jbang "${{ matrix.script }}" --help
if: ${{ contains(matrix.script, 'Launcher.java') }}
shell: bash
maven-examples:
name: Maven examples
runs-on: ubuntu-latest
needs: publish
if: github.ref == 'refs/heads/main'
strategy:
fail-fast: false
matrix:
project: [ jablib-examples/maven3/doi-to-bibtex ]
steps:
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'false'
show-progress: 'false'
- name: Set up JDK
uses: actions/setup-java@v5
with:
java-version: 25
distribution: 'corretto'
cache: maven
check-latest: true
- run: |
cd ${{ matrix.project }}
mvn --batch-mode --update-snapshots verify
shell: bash
codecoverage:
if: false
name: Code coverage
runs-on: ubuntu-slim
services:
postgres:
image: postgres:10.8
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- name: Check secrets presence
id: checksecrets
shell: bash
run: |
if [ "$CODECOV_TOKEN" == "" ]; then
echo "secretspresent=NO" >> $GITHUB_OUTPUT
echo "❌ Secret CODECOV_TOKEN not present"
else
echo "secretspresent=YES" >> $GITHUB_OUTPUT
echo "✔️ Secret CODECOV_TOKEN present"
fi
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Checkout source
uses: actions/checkout@v6
with:
submodules: 'true'
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- name: Update test coverage metrics
if: (github.ref == 'refs/heads/main') && (steps.checksecrets.outputs.secretspresent == 'YES')
run: xvfb-run --auto-servernum gradle jacocoTestReport
env:
CI: "true"
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
DBMS: "postgresql"
- uses: codecov/codecov-action@v6
if: (github.ref == 'refs/heads/main') && (steps.checksecrets.outputs.secretspresent == 'YES')
with:
token: ${{ secrets.CODECOV_TOKEN }}
- name: Upload Codacy report
if: (github.ref == 'refs/heads/main') && (steps.checksecrets.outputs.secretspresent == 'YES')
run: bash <(curl -Ls https://coverage.codacy.com/get.sh)
env:
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}
requirements_coverage:
name: "Validate requirement coverage"
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
with:
show-progress: 'false'
- uses: ./.github/actions/setup-gradle
- run: gradle traceRequirements
- if: always()
run: cat build/reports/tracing.txt
# This is https://github.com/marketplace/actions/gradle-wrapper-validation
# It ensures that the jar file is from gradle and not by a strange third party.
gradlevalidation:
name: "Validate Gradle Wrapper"
runs-on: ubuntu-slim
steps:
- uses: actions/checkout@v6
with:
show-progress: 'false'
- uses: gradle/actions/wrapper-validation@v5