Skip to content

Commit

Permalink
Run on Java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
ar committed Feb 13, 2024
1 parent 6495ffd commit 9b28642
Showing 1 changed file with 18 additions and 8 deletions.
26 changes: 18 additions & 8 deletions .github/workflows/jpos-ee.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: "Run jPOS-EE Tests"
on: [push, pull_request]

Expand All @@ -6,21 +7,23 @@ jobs:
strategy:
fail-fast: false
matrix:
java: [ 1.8, 11 ]
os: [ubuntu-latest, macos-latest, windows-latest]
java: [ 21 ]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v1
with:
distribution: 'corretto'
java-version: ${{ matrix.java }}
- name: Cache Gradle packages
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
cache: 'gradle'
# - name: Cache Gradle packages
# uses: actions/cache@v2
# with:
# path: ~/.gradle/caches
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
# restore-keys: ${{ runner.os }}-gradle
- name: Assemble
run: ./gradlew assemble --info
env:
Expand All @@ -29,9 +32,16 @@ jobs:
run: ./gradlew check --info
env:
TERM: dumb
- name: Upload test results
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: test-results
path: jpos/build/reports/tests/*
- name: Check minigl postgres
run: ./gradlew :modules:minigl:clean :modules:minigl:check --rerun-tasks --info
if: runner.os != 'Windows'
env:
TERM: dumb
GRADLE_OPTS: -Dtest.minigl_db_driver=postgres

0 comments on commit 9b28642

Please sign in to comment.