Skip to content

Commit

Permalink
Merge pull request #433 from michalvavrik/feature/java-17
Browse files Browse the repository at this point in the history
Move Java baseline to 17
  • Loading branch information
jedla97 authored Dec 1, 2023
2 parents 58f94d8 + ac63e4a commit b6f9bc0
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 21 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
java: [ 17 ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
needs: quarkus-main-build
strategy:
matrix:
java: [ 11 ]
java: [ 17 ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down Expand Up @@ -88,8 +88,8 @@ jobs:
needs: quarkus-main-build
strategy:
matrix:
java: [ 11 ]
image: [ "ubi-quarkus-graalvmce-builder-image:jdk-17", "ubi-quarkus-mandrel-builder-image:23.0-java17" ]
java: [ 17 ]
image: [ "ubi-quarkus-graalvmce-builder-image:jdk-21", "ubi-quarkus-mandrel-builder-image:jdk-21" ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down Expand Up @@ -134,7 +134,7 @@ jobs:
needs: quarkus-main-build
strategy:
matrix:
java: [ 11 ]
java: [ 17 ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down Expand Up @@ -178,9 +178,9 @@ jobs:
needs: quarkus-main-build
strategy:
matrix:
java: [ 11 ]
graalvm-version: ["mandrel-23.0.1.2-Final"]
graalvm-java-version: [ "17" ]
java: [ 17 ]
graalvm-version: ["mandrel-latest"]
graalvm-java-version: [ "21" ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
java: [ 17 ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down Expand Up @@ -43,8 +43,8 @@ jobs:
needs: quarkus-main-build
strategy:
matrix:
java: [ 11 ]
image: [ "ubi-quarkus-mandrel-builder-image:23.0-java17"]
java: [ 17 ]
image: [ "ubi-quarkus-mandrel-builder-image:jdk-21"]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
needs: quarkus-main-build
strategy:
matrix:
java: [ 11 ]
java: [ 17 ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down Expand Up @@ -145,9 +145,9 @@ jobs:
needs: quarkus-main-build
strategy:
matrix:
java: [ 11 ]
graalvm-version: ["mandrel-23.0.1.2-Final"]
graalvm-java-version: [ "17" ]
java: [ 17 ]
graalvm-version: ["mandrel-latest"]
graalvm-java-version: [ "21" ]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/quarkus-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
env:
ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci
ECOSYSTEM_CI_REPO_FILE: context.yaml
JAVA_VERSION: 11
JAVA_VERSION: 17

#########################
# Repo specific setting #
Expand Down
2 changes: 1 addition & 1 deletion 300-quarkus-vertx-webClient/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

To compile and run this demo you will need:

- JDK 11+
- JDK 17+

## Scope of the testing

Expand Down
2 changes: 1 addition & 1 deletion 301-quarkus-vertx-kafka/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

To compile and run this demo you will need:

- JDK 11+
- JDK 17+
- Docker / docker-compose

### Scope of the testing
Expand Down
2 changes: 1 addition & 1 deletion 302-quarkus-vertx-jwt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ this.router.get("/secured")

To compile and run this demo you will need:

- JDK 11+
- JDK 17+
- Docker

## Scope of the testing
Expand Down
2 changes: 1 addition & 1 deletion 303-quarkus-vertx-sql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

To compile and run this demo you will need:

- JDK 11+
- JDK 17+
- Docker
- PostgreSQL
- MySQL
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Beefy scenarios for Quarkus

## Prerequisites
- JDK 11
- JDK 17+
- Docker

## Test-suite Execution
Expand Down

0 comments on commit b6f9bc0

Please sign in to comment.