Skip to content

Commit

Permalink
Added Java8 build step
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Jul 30, 2024
1 parent f6d831f commit 64287d2
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,21 @@ on:
branches: [ series/3.1.0 ]

jobs:
build:
java8:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 8
cache: maven
- name: Build with Maven
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

build:
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 64287d2

Please sign in to comment.