Skip to content

Commit

Permalink
align build script with IPF
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Ohr committed Mar 14, 2024
1 parent 12b8203 commit da4f3f0
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build IPF Gazelle with Maven
name: Build IPF Gazelle with Maven with Java 17

on: [push, pull_request]

Expand All @@ -8,18 +8,15 @@ env:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 17 ]
name: Java ${{ matrix.java }} build
name: Java 17 build
timeout-minutes: 90
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: ${{ matrix.java }}
distribution: 'temurin'
java-version: 17
cache: 'maven'
- name: Build with Maven
run: mvn -B clean package --file pom.xml
Expand Down

0 comments on commit da4f3f0

Please sign in to comment.