Skip to content

Commit

Permalink
Bump to a medium+ resource class for builds (#3455)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
shakuzen committed Oct 5, 2022
1 parent 6c5aa1e commit e2b660e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,21 @@ executors:
working_directory: ~/micrometer
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
resource_class: medium+
docker:
- image: cimg/openjdk:18.0.2
circle-jdk17-executor:
working_directory: ~/micrometer
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
resource_class: medium+
docker:
- image: cimg/openjdk:17.0.4
circle-jdk11-executor:
working_directory: ~/micrometer
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
resource_class: medium+
docker:
- image: cimg/openjdk:11.0.13
machine-executor:
Expand Down

0 comments on commit e2b660e

Please sign in to comment.