Skip to content

Commit 8852522

Browse files
authored
Fix 1.x version build (#2998)
1 parent 4948d21 commit 8852522

File tree

3 files changed

+8
-33
lines changed

3 files changed

+8
-33
lines changed

.github/workflows/build-version.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,17 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
java: [ '8', '11', '17', '21', '22', '23' ]
15+
java: [ '8', '11', '17', '21', '23' ]
1616
architecture: [ 'x64' ]
17-
fail-fast: false
1817
name: Build with JDK ${{ matrix.java }} on ${{ matrix.architecture }}
1918
steps:
2019
- uses: actions/checkout@v4
21-
- name: Setup JDK
22-
uses: actions/setup-java@v4
20+
- uses: actions/setup-java@v4
2321
with:
2422
distribution: 'temurin'
2523
java-version: ${{ matrix.java }}
2624
architecture: ${{ matrix.architecture }}
27-
cache: 'maven'
28-
29-
- name: Build with Maven
30-
run: mvn test
25+
cache: 'gradle'
26+
- uses: gradle/actions/setup-gradle@v4
27+
- run: ./gradlew check --info --warning-mode all
28+
- uses: codecov/codecov-action@v5

.github/workflows/doclint-version.yml

Lines changed: 0 additions & 25 deletions
This file was deleted.

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ out/
2525

2626
# -- VAVR build files
2727
generator/bin/
28+
29+
target/

0 commit comments

Comments
 (0)