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

Add JDK 23 build #1005

Merged
merged 1 commit into from
Mar 19, 2025
Merged
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
20 changes: 20 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
version: 2.1

executors:
circle-jdk23-executor:
working_directory: ~/micrometer-tracing
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
docker:
- image: cimg/openjdk:23.0.2
circle-jdk-executor:
working_directory: ~/micrometer-tracing
environment:
Expand Down Expand Up @@ -57,6 +63,11 @@ commands:
path: ~/micrometer-tracing/test-results/

jobs:
build-jdk23:
executor: circle-jdk23-executor
steps:
- gradlew-build

build:
executor: circle-jdk-executor
steps:
Expand Down Expand Up @@ -95,6 +106,7 @@ workflows:
- build
- build-jdk11
- build-jdk17
- build-jdk23
- docker-tests
- deploy:
context:
Expand All @@ -103,6 +115,7 @@ workflows:
- build
- build-jdk11
- build-jdk17
- build-jdk23
- docker-tests
filters:
branches:
Expand All @@ -129,6 +142,12 @@ workflows:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+(-(RC|M)\d+)?$/
- build-jdk23:
filters:
branches:
ignore: /.*/
tags:
only: /^v\d+\.\d+\.\d+(-(RC|M)\d+)?$/
- docker-tests:
filters:
branches:
Expand All @@ -142,6 +161,7 @@ workflows:
- build
- build-jdk11
- build-jdk17
- build-jdk23
- docker-tests
filters:
tags:
Expand Down