Skip to content

Commit

Permalink
ci: add JDK 17 and Ubuntu 22.04 support (#405)
Browse files Browse the repository at this point in the history
  • Loading branch information
bradh authored May 28, 2022
1 parent ed8cf4e commit e16dd55
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/jdk17.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: JDK17 Build (Ubuntu 22.04)

on:
push:
branches: [ develop, 2.x ]
pull_request:
branches: [ develop, 2.x ]

jobs:
build:
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 17
- name: Set up Maven
uses: stCarolas/[email protected]
with:
maven-version: 3.8.5
- name: Build and install
run: mvn -B install -Pdebug || mvn -B install -Pdebug || mvn -B install -Pdebug

0 comments on commit e16dd55

Please sign in to comment.