Skip to content
Closed
Changes from 1 commit
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
Next Next commit
Try openjdk:13
  • Loading branch information
iamdanfox committed Aug 22, 2019
commit ad6c3a3642007ae6ba83a3b5b27df529d32ae4d0
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ jobs:
- store_test_results: { path: ~/junit }
- store_artifacts: { path: ~/artifacts }

build-11:
docker: [{ image: 'circleci/openjdk:11-node' }]
build-13:
docker: [{ image: 'openjdk:13' }]
resource_class: xlarge
environment:
GRADLE_OPTS: -Dorg.gradle.console=plain -Dorg.gradle.internal.launcher.welcomeMessageEnabled=false
CIRCLE_TEST_REPORTS: /home/circleci/junit
CIRCLE_ARTIFACTS: /home/circleci/artifacts
CIRCLE_TEST_REPORTS: /root/junit
CIRCLE_ARTIFACTS: /root/artifacts
_JAVA_OPTIONS: '-XX:ActiveProcessorCount=8 -Xmx2048m'
steps:
- checkout
Expand Down Expand Up @@ -77,7 +77,7 @@ workflows:
- build:
# CircleCI2 will ignore tags without this. https://circleci.com/docs/2.0/workflows/#git-tag-job-execution
filters: { tags: { only: /.*/ } }
- build-11:
- build-13:
# CircleCI2 will ignore tags without this. https://circleci.com/docs/2.0/workflows/#git-tag-job-execution
filters: { tags: { only: /.*/ } }
- markdown:
Expand Down