Skip to content

Add builds for JDK 13 #382

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
Dec 26, 2019
Merged
Show file tree
Hide file tree
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
30 changes: 30 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ executors:
scala_jdk11_executor:
docker:
- image: circleci/openjdk:11-jdk
scala_jdk13_executor:
docker:
- image: circleci/openjdk:13.0.1-jdk-buster
scala_jdk14_executor:
docker:
- image: circleci/openjdk:14-ea-26-jdk-buster

commands:
sbt_cmd:
Expand Down Expand Up @@ -98,6 +104,30 @@ workflows:
name: jdk11_dotty
java_version: jdk11
scala_version: 0.20.0-RC1
- scala_job:
name: jdk13_2.12
java_version: jdk13
scala_version: 2.12.10
- scala_job:
name: jdk13_2.13
java_version: jdk13
scala_version: 2.13.1
- scala_job:
name: jdk13_dotty
java_version: jdk13
scala_version: 0.20.0-RC1
- scala_job:
name: jdk14_2.12
java_version: jdk14
scala_version: 2.12.10
- scala_job:
name: jdk14_2.13
java_version: jdk14
scala_version: 2.13.1
- scala_job:
name: jdk14_dotty
java_version: jdk14
scala_version: 0.20.0-RC1
- scalajs_job:
name: sjs0.6_2.12
scala_version: 2.12.10
Expand Down
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
- SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=8
- SCALAJS_VERSION=1.0.0-RC2 ADOPTOPENJDK=8
- SCALAJS_VERSION= ADOPTOPENJDK=11
- SCALAJS_VERSION= ADOPTOPENJDK=13

matrix:
exclude:
Expand Down