Skip to content

Add JDK 15/16 To The CircleCI Build #451

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 30, 2020
Merged
Changes from all commits
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
19 changes: 17 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ executors:
scala_jdk15_executor:
docker:
- image: circleci/openjdk:15-buster
scala_jdk16_executor:
docker:
- image: circleci/openjdk:16-buster

commands:
sbt_cmd:
Expand All @@ -20,7 +23,7 @@ commands:
default: 2.12.12
sbt_tasks:
type: string
default: update compile test:compile test doc package
default: update compile test:compile test doc package osgiBundle
steps:
- restore_cache:
keys:
Expand Down Expand Up @@ -52,7 +55,7 @@ jobs:
- run: java -version
- sbt_cmd:
scala_version: << parameters.scala_version >>
sbt_tasks: xml/update xml/compile xml/test:compile xml/test xml/doc xml/package
sbt_tasks: xml/update xml/compile xml/test:compile xml/test xml/doc xml/package xml/osgiBundle
scalajs_job:
executor: scala_jdk8_executor
parameters:
Expand Down Expand Up @@ -113,6 +116,18 @@ workflows:
name: jdk15_3.0
java_version: jdk15
scala_version: 3.0.0-M2
- scala_job:
name: jdk16_2.12
java_version: jdk16
scala_version: 2.12.12
- scala_job:
name: jdk16_2.13
java_version: jdk16
scala_version: 2.13.3
- scala_job:
name: jdk16_3.0
java_version: jdk16
scala_version: 3.0.0-M2
- scalajs_job:
name: sjs1.0_2.12
scala_version: 2.12.12
Expand Down