-
Notifications
You must be signed in to change notification settings - Fork 4
72 lines (59 loc) · 1.73 KB
/
ci.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
name: Java CI
on: [push, pull_request]
jobs:
build-extractor:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '21'
- name: Run setup script
run: ./setup.sh
- name: extractor - Build and Test with Gradle
run: |
cd extractor
./gradlew clean build test run --args="../.ci-temp/checkstyle" --info --stacktrace --console=plain \
-Dorg.gradle.logging.level=DEBUG \
-Dtest.single=MainsLauncherTest
- name: diff-java-tool Build and Test with Gradle
run: |
cd diff-java-tool
./gradlew clean compileJava compileTestJava
- name: Check git changes
run: ./.github/workflows/commands.sh git-diff
- name: Upload build reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: build-reports
path: |
extractor/build/reports
extractor/build/test-results
build-diff-java-tool:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up JDK 21
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '21'
- name: diff-java-tool Build and Test with Gradle
run: |
cd diff-java-tool
./gradlew clean build
- name: Check git changes
run: ./.github/workflows/commands.sh git-diff
- name: Upload build reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: build-reports
path: |
extractor/build/reports
extractor/build/test-results