Skip to content

Commit

Permalink
Merge pull request #383 from rhusar/ci-jdk23
Browse files Browse the repository at this point in the history
build: CI add JDK 23 to the matrix and replace caching with one from setup-java GHA and remove unused releasing shell scripts
  • Loading branch information
rhusar authored Oct 24, 2024
2 parents 756f86a + 47ada7e commit 6d21fc1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 70 deletions.
13 changes: 4 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (if possible)
java: [ 11, 17, 21, 22 ]
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and optionally the latest EA JDK (if available).
# https://www.oracle.com/java/technologies/java-se-support-roadmap.html
java: [ 11, 17, 21, 23 ]
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -24,12 +25,6 @@ jobs:
with:
distribution: temurin
java-version: ${{ matrix.java }}
- name: Cache local Maven repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
cache: maven
- name: Build with Maven
run: mvn --batch-mode --no-transfer-progress verify
27 changes: 0 additions & 27 deletions bin/release_to_local_repo.sh

This file was deleted.

34 changes: 0 additions & 34 deletions bin/release_to_nexus.sh

This file was deleted.

0 comments on commit 6d21fc1

Please sign in to comment.