Skip to content

Commit 5424816

Browse files
committed
Update images for CircleCI
This commit also adds a build for JDK 23. Signed-off-by: Johnny Lim <[email protected]>
1 parent 74c5569 commit 5424816

File tree

1 file changed

+24
-4
lines changed

1 file changed

+24
-4
lines changed

.circleci/config.yml

+24-4
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,34 @@
11
version: 2.1
22

33
executors:
4+
circle-jdk23-executor:
5+
working_directory: ~/micrometer-tracing
6+
environment:
7+
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
8+
docker:
9+
- image: cimg/openjdk:23.0.2
410
circle-jdk-executor:
511
working_directory: ~/micrometer-tracing
612
environment:
713
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
814
docker:
9-
- image: cimg/openjdk:20.0.1
15+
- image: cimg/openjdk:21.0.6
1016
circle-jdk11-executor:
1117
working_directory: ~/micrometer-tracing
1218
environment:
1319
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
1420
docker:
15-
- image: cimg/openjdk:11.0.19
21+
- image: cimg/openjdk:11.0.26
1622
circle-jdk17-executor:
1723
working_directory: ~/micrometer-tracing
1824
environment:
1925
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
2026
docker:
21-
- image: cimg/openjdk:17.0.7
27+
- image: cimg/openjdk:17.0.14
2228
machine-executor:
2329
working_directory: ~/micrometer-tracing
2430
machine:
25-
image: ubuntu-2204:2023.04.2
31+
image: ubuntu-2404:2024.11.1
2632

2733
commands:
2834
gradlew-build:
@@ -57,6 +63,11 @@ commands:
5763
path: ~/micrometer-tracing/test-results/
5864

5965
jobs:
66+
build-jdk23:
67+
executor: circle-jdk23-executor
68+
steps:
69+
- gradlew-build
70+
6071
build:
6172
executor: circle-jdk-executor
6273
steps:
@@ -95,6 +106,7 @@ workflows:
95106
- build
96107
- build-jdk11
97108
- build-jdk17
109+
- build-jdk23
98110
- docker-tests
99111
- deploy:
100112
context:
@@ -103,6 +115,7 @@ workflows:
103115
- build
104116
- build-jdk11
105117
- build-jdk17
118+
- build-jdk23
106119
- docker-tests
107120
filters:
108121
branches:
@@ -129,6 +142,12 @@ workflows:
129142
ignore: /.*/
130143
tags:
131144
only: /^v\d+\.\d+\.\d+(-(RC|M)\d+)?$/
145+
- build-jdk23:
146+
filters:
147+
branches:
148+
ignore: /.*/
149+
tags:
150+
only: /^v\d+\.\d+\.\d+(-(RC|M)\d+)?$/
132151
- docker-tests:
133152
filters:
134153
branches:
@@ -142,6 +161,7 @@ workflows:
142161
- build
143162
- build-jdk11
144163
- build-jdk17
164+
- build-jdk23
145165
- docker-tests
146166
filters:
147167
tags:

0 commit comments

Comments
 (0)