Browse Source

Merge pull request #399 from carldea/master

Using TCK Tested JDK builds of OpenJDK
tags/rel_3_29_0_ga
Shigeru Chiba 2 years ago
parent
commit
c15bd463fd
No account linked to committer's email address
1 changed files with 7 additions and 4 deletions
  1. 7
    4
      .github/workflows/maven.yml

+ 7
- 4
.github/workflows/maven.yml View File

@@ -13,13 +13,16 @@ jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
os: [ ubuntu-latest ]
java-version: [ 11.0.3, 11 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
java-version: ${{ matrix.java-version }}
distribution: 'zulu'
- name: Build with Maven
run: mvn -B package --file pom.xml

Loading…
Cancel
Save