Skip to content

Commit

Permalink
Test against Semeru JDK 17
Browse files Browse the repository at this point in the history
  • Loading branch information
acogoluegnes committed Jan 17, 2024
1 parent cc4d6be commit e19a3a6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/test-supported-java-versions-5.x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
java: [ '8', '11', '17', '21', '22-ea' ]
name: Test against Java ${{ matrix.java }}
distribution: [ 'temurin' ]
version: [ '8', '11', '17', '21', '22-ea' ]
include:
- distribution: 'semeru'
version: '17'
name: Test against Java ${{ matrix.distribution }} ${{ matrix.version }}
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -28,8 +32,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.version }}
cache: 'maven'
- name: Start broker
run: ci/start-broker.sh
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/test-supported-java-versions-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
java: [ '8', '11', '17', '21', '22-ea' ]
name: Test against Java ${{ matrix.java }}
distribution: [ 'temurin' ]
version: [ '8', '11', '17', '21', '22-ea' ]
include:
- distribution: 'semeru'
version: '17'
name: Test against Java ${{ matrix.distribution }} ${{ matrix.version }}
steps:
- uses: actions/checkout@v4
- name: Checkout tls-gen
Expand All @@ -26,8 +30,8 @@ jobs:
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: ${{ matrix.java }}
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.version }}
cache: 'maven'
- name: Start broker
run: ci/start-broker.sh
Expand Down

0 comments on commit e19a3a6

Please sign in to comment.