Skip to content

Fixed (hopefully) build matrix problem with adoptium #2

Fixed (hopefully) build matrix problem with adoptium

Fixed (hopefully) build matrix problem with adoptium #2

Workflow file for this run

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ '21', '22', '23' ]
vendor: ['temurin', 'oracle']
name: Build with JDK ${{ matrix.version }} - ${{ matrix.vendor }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
- name: Gradle Build
run: ./gradlew build -Dmatrix.version=${{ matrix.version }} -Dmatrix.vendor=${{ matrix.vendor }}