mirror of
https://github.com/danieldemus/openhab-core.git
synced 2026-07-29 12:34:22 +02:00
[CI] Add Java 21 compiling to J17 and native J21 (#4186)
* [CI] Add Java 21 compiling to J17 and native J21 Signed-off-by: Holger Friedrich <mail@holger-friedrich.de>
This commit is contained in:
@@ -18,7 +18,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
java: [ '17' ]
|
java: [ '17', '21', 'profile-j21' ]
|
||||||
maven: [ '3.9.6' ]
|
maven: [ '3.9.6' ]
|
||||||
os: [ 'ubuntu-22.04' ]
|
os: [ 'ubuntu-22.04' ]
|
||||||
name: Build (Java ${{ matrix.java }}, ${{ matrix.os }})
|
name: Build (Java ${{ matrix.java }}, ${{ matrix.os }})
|
||||||
@@ -46,10 +46,18 @@ jobs:
|
|||||||
|
|
||||||
- name: Set up Java ${{ matrix.java }}
|
- name: Set up Java ${{ matrix.java }}
|
||||||
uses: actions/setup-java@v4
|
uses: actions/setup-java@v4
|
||||||
|
if: ${{ matrix.java != 'profile-j21' }}
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
java-version: ${{ matrix.java }}
|
java-version: ${{ matrix.java }}
|
||||||
|
|
||||||
|
- name: Set up Java ${{ matrix.java }}
|
||||||
|
uses: actions/setup-java@v4
|
||||||
|
if: ${{ matrix.java == 'profile-j21' }}
|
||||||
|
with:
|
||||||
|
distribution: 'temurin'
|
||||||
|
java-version: ${{ 21 }}
|
||||||
|
|
||||||
- name: Set up Maven ${{ matrix.maven }}
|
- name: Set up Maven ${{ matrix.maven }}
|
||||||
uses: stCarolas/setup-maven@v5
|
uses: stCarolas/setup-maven@v5
|
||||||
with:
|
with:
|
||||||
@@ -62,6 +70,7 @@ jobs:
|
|||||||
echo "::add-matcher::.github/openhab-compile-problems.json"
|
echo "::add-matcher::.github/openhab-compile-problems.json"
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
|
if: ${{ matrix.java != 'profile-j21' }}
|
||||||
id: build
|
id: build
|
||||||
run: './.github/scripts/maven-build'
|
run: './.github/scripts/maven-build'
|
||||||
env:
|
env:
|
||||||
@@ -71,15 +80,26 @@ jobs:
|
|||||||
-Dmaven.wagon.httpconnectionManager.ttlSeconds=25
|
-Dmaven.wagon.httpconnectionManager.ttlSeconds=25
|
||||||
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
|
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
if: ${{ matrix.java == 'profile-j21' }}
|
||||||
|
id: build-j21
|
||||||
|
run: './.github/scripts/maven-build clean verify -B -T 1.5C -U -Pj21'
|
||||||
|
env:
|
||||||
|
MAVEN_OPTS: >-
|
||||||
|
-Xmx2g
|
||||||
|
-Dmaven.wagon.http.retryHandler.count=5
|
||||||
|
-Dmaven.wagon.httpconnectionManager.ttlSeconds=25
|
||||||
|
-Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn
|
||||||
|
|
||||||
- name: Upload Build Log
|
- name: Upload Build Log
|
||||||
if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
|
if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure') || (steps.build-j21.outcome == 'success') || (steps.build-j21.outcome == 'failure')) }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: build-log-java-${{ matrix.java }}-${{ matrix.os }}
|
name: build-log-java-${{ matrix.java }}-${{ matrix.os }}
|
||||||
path: build.log
|
path: build.log
|
||||||
|
|
||||||
- name: Upload SAT Summary Report
|
- name: Upload SAT Summary Report
|
||||||
if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
|
if: ${{ matrix.java == '17' && always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: sat-summary-report
|
name: sat-summary-report
|
||||||
|
|||||||
Reference in New Issue
Block a user