This is an automated email from the ASF dual-hosted git repository. bmarwell pushed a commit to branch openj9_build in repository https://gitbox.apache.org/repos/asf/maven-jlink-plugin.git
commit 5515832169015a5a3565fca1089db0e8775a2ed9 Author: Benjamin Marwell <[email protected]> AuthorDate: Mon Mar 13 08:25:16 2023 +0100 [BUILD] add OpenJ9 to build matrix --- .github/workflows/maven.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 294504a..6fa77c4 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -26,6 +26,7 @@ jobs: matrix: os: [ ubuntu-latest, windows-latest, macOS-latest ] java: [ 8, 11, 17 ] + dist: [ 'temurin', 'openj9' ] fail-fast: false runs-on: ${{ matrix.os }} @@ -46,7 +47,7 @@ jobs: - name: Set up JDK uses: actions/setup-java@v3 with: - distribution: 'temurin' + distribution: ${{ matrix.dist }} java-version: ${{ matrix.java }} cache: 'maven'
