Skip to content

Commit 76a7383

Browse files
committed
New set of Maven and JDK versions to check
Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
1 parent 0aea456 commit 76a7383

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

.github/workflows/linux-jdks-with-current-maven-ci.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,18 @@ jobs:
3030
openjdk:
3131
strategy:
3232
matrix:
33-
jdk: [8-slim, 11-slim, 16-slim, 17-slim]
34-
name: "OpenJDK ${{ matrix.jdk }}"
33+
platform: [3.2.5-jdk-8, 3.5.4-jdk-8-slim, 3.6.3-openjdk-11-slim, 3.8.7-eclipse-temurin-17-alpine, 3.9.0-eclipse-temurin-19-alpine, 3.9.1-eclipse-temurin-20-alpine]
34+
name: "Platform ${{ matrix.platform }}"
3535
runs-on: ubuntu-latest
36-
container: "ghcr.io/ghcri/maven:3.8-openjdk-${{ matrix.jdk }}"
36+
container: "maven:${{ matrix.platform }}"
3737
steps:
3838
- uses: actions/checkout@v2
3939
- uses: actions/cache@v1
4040
with:
4141
path: ~/.m2/repository
42-
key: ${{ runner.os }}-maven-${{ matrix.jdk }}-${{ hashFiles('**/pom.xml') }}
42+
key: ${{ runner.os }}-maven-${{ matrix.platform }}-${{ hashFiles('**/pom.xml') }}
4343
restore-keys: |
44-
${{ runner.os }}-maven-${{ matrix.jdk }}-
44+
${{ runner.os }}-maven-${{ matrix.platform }}-
4545
- name: 'Build'
46-
run: mvn -B -V --no-transfer-progress -Prun-its clean verify --fail-at-end
46+
run: mvn -B -V clean verify --fail-at-end
47+

0 commit comments

Comments
 (0)