Skip to content

Commit

Permalink
Merge pull request #131 from carldea/master
Browse files Browse the repository at this point in the history
Using TCK Tested JDK builds of OpenJDK
  • Loading branch information
donmendelson authored Sep 1, 2021
2 parents 02c6ecb + 54d5736 commit 7749689
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,20 @@ on:
jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
os: [ ubuntu-latest ]
java-version: [ 11 ]
distro: [ 'zulu', 'temurin' ]
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK ${{ matrix.java-version }} ${{ matrix.distro }}
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
distribution: ${{ matrix.distro }}
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload package
Expand Down

0 comments on commit 7749689

Please sign in to comment.