Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move Java baseline to 17 #433

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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