From 9cafa80b60e456b273226faf0a7289196344ac19 Mon Sep 17 00:00:00 2001 From: Holger Friedrich Date: Sun, 15 Dec 2024 23:21:28 +0100 Subject: [PATCH] Remove Java 17 build, switch to 21 (#2925) Related to openhab/openhab-core#4483 --------- Signed-off-by: Holger Friedrich --- .github/workflows/ci-build.yml | 28 ++++------------------------ pom.xml | 11 ++--------- 2 files changed, 6 insertions(+), 33 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 3780d6674..1cf110226 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - java: [ '17', '21', 'profile-j21' ] + java: [ '21' ] maven: [ '3.9.9' ] python: [ '3.12' ] os: [ 'ubuntu-24.04' ] @@ -47,14 +47,6 @@ jobs: - 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 Java ${{ matrix.java }} - uses: actions/setup-java@v4 - if: ${{ matrix.java != 'profile-j21' }} with: distribution: 'temurin' java-version: ${{ matrix.java }} @@ -77,18 +69,6 @@ jobs: echo "::add-matcher::.github/openhab-compile-problems.json" - 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: Build - if: ${{ matrix.java != 'profile-j21' }} id: build run: './.github/scripts/maven-build' env: @@ -99,21 +79,21 @@ jobs: -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn - name: Upload Build Log - if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure') || (steps.build-j21.outcome == 'success') || (steps.build-j21.outcome == 'failure')) }} + if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }} uses: actions/upload-artifact@v4 with: name: build-log-java-${{ matrix.java }}-${{ matrix.os }} path: build.log - name: Upload SAT Summary Report - if: ${{ matrix.java == '17' && always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure') || (steps.build-j21.outcome == 'success') || (steps.build-j21.outcome == 'failure')) }} + if: ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }} uses: actions/upload-artifact@v4 with: name: sat-summary-report path: target/summary_report.html - name: Report SAT Errors as Annotations - if: ${{ matrix.java == '17' && always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }} + if: ${{ matrix.java == '21' && always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }} uses: ghys/checkstyle-github-action@main with: title: CheckStyle Violations diff --git a/pom.xml b/pom.xml index c9a88086a..8ce033b1d 100644 --- a/pom.xml +++ b/pom.xml @@ -62,7 +62,7 @@ UTF-8 UTF-8 - 17 + 21 ${oh.java.version} 7.1.0 @@ -585,7 +585,7 @@ Import-Package: \\ 3.6.3 - [17.0,18.0),[21.0,22.0) + [21.0,22.0) @@ -708,13 +708,6 @@ Import-Package: \\ - - j21 - - 21 - ${oh.java.version} - -