Skip to content

Commit 64287d2

Browse files
committed
Added Java8 build step
1 parent f6d831f commit 64287d2

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

.github/workflows/build.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,21 @@ on:
77
branches: [ series/3.1.0 ]
88

99
jobs:
10-
build:
10+
java8:
11+
runs-on: ubuntu-latest
1112

13+
steps:
14+
- uses: actions/checkout@v4
15+
- name: Set up Java
16+
uses: actions/setup-java@v4
17+
with:
18+
distribution: 'temurin'
19+
java-version: 8
20+
cache: maven
21+
- name: Build with Maven
22+
run: mvn -f pom-java8.xml clean install -Dgpg.skip -Dmaven.javadoc.skip=true -Dmaven.test.failure.ignore=true -Dproject.build.sourceEncoding=UTF-8 -Djunit5.excludeGroups=webservice,mysql
23+
24+
build:
1225
runs-on: ubuntu-latest
1326

1427
steps:

0 commit comments

Comments
 (0)