Skip to content

Commit e2b660e

Browse files
authored
Bump to a medium+ resource class for builds (micrometer-metrics#3455)
Our builds are running at max CPU and RAM for most of the CI build on the default `medium` resource class for docker executors. We could probably get some improvement from more resources. This bumps up one level to `medium+` and makes the resource class choice explicit in the build, instead of the implicit default.
1 parent 6c5aa1e commit e2b660e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.circleci/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,21 @@ executors:
55
working_directory: ~/micrometer
66
environment:
77
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
8+
resource_class: medium+
89
docker:
910
- image: cimg/openjdk:18.0.2
1011
circle-jdk17-executor:
1112
working_directory: ~/micrometer
1213
environment:
1314
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
15+
resource_class: medium+
1416
docker:
1517
- image: cimg/openjdk:17.0.4
1618
circle-jdk11-executor:
1719
working_directory: ~/micrometer
1820
environment:
1921
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
22+
resource_class: medium+
2023
docker:
2124
- image: cimg/openjdk:11.0.13
2225
machine-executor:

0 commit comments

Comments
 (0)