Skip to content

Commit 51a97e3

Browse files
committed
CircleCI: use openjdk:9-jdk image to build instead of 8-jdk
The original (CirclecI 1.0) build used JDK 9. The Docker Hub UI only lists 100 tags per repository, not showing version 9, so the initial migration used JDK 8. The API confirms we get version 9 images: curl \ https://registry.hub.docker.com/v1/repositories/circleci/openjdk/tags \ | jq '.[] | .name' -r | grep '^9'
1 parent 8b8c3a2 commit 51a97e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ version: 2
1616
jobs:
1717
build:
1818
docker:
19-
- image: circleci/openjdk:8-jdk
19+
- image: circleci/openjdk:9-jdk
2020
steps:
2121
- checkout
2222

0 commit comments

Comments
 (0)