Skip to content

Update dotty 0.22.0-RC1 #405

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
Feb 5, 2020
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ workflows:
- scala_job:
name: dotty-0.21
java_version: jdk8
scala_version: 0.21.0-RC1
scala_version: 0.22.0-RC1
- scala_job:
name: jdk11_2.12
java_version: jdk11
Expand All @@ -103,7 +103,7 @@ workflows:
- scala_job:
name: jdk11_dotty
java_version: jdk11
scala_version: 0.21.0-RC1
scala_version: 0.22.0-RC1
- scala_job:
name: jdk13_2.12
java_version: jdk13
Expand All @@ -115,7 +115,7 @@ workflows:
- scala_job:
name: jdk13_dotty
java_version: jdk13
scala_version: 0.21.0-RC1
scala_version: 0.22.0-RC1
- scala_job:
name: jdk14_2.12
java_version: jdk14
Expand All @@ -127,7 +127,7 @@ workflows:
- scala_job:
name: jdk14_dotty
java_version: jdk14
scala_version: 0.21.0-RC1
scala_version: 0.22.0-RC1
- scalajs_job:
name: sjs0.6_2.12
scala_version: 2.12.10
Expand Down
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import: scala/scala-dev:travis/default.yml
language: scala

scala:
- 0.21.0-RC1
- 0.22.0-RC1
- 2.12.10
- 2.13.1

Expand All @@ -18,9 +18,9 @@ env:

matrix:
exclude:
- scala: 0.21.0-RC1
- scala: 0.22.0-RC1
env: SCALAJS_VERSION=0.6.32 ADOPTOPENJDK=8
- scala: 0.21.0-RC1
- scala: 0.22.0-RC1
env: SCALAJS_VERSION=1.0.0-RC2 ADOPTOPENJDK=8

install:
Expand Down
2 changes: 2 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,8 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
}
)
.jsSettings(
// The config for Travis has an exclude, but sbt-travisci doesn't catch it.
crossScalaVersions -= "0.22.0-RC1",
// Scala.js cannot run forked tests
fork in Test := false
)
Expand Down