Skip to content

Update scala 2.13.0-RC1 to 2.13.0-RC2 #210

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 2 commits into from
May 17, 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
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
dist: trusty
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

curious why this is needed

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new Travis default build environment 'xenial' is being rolled out (https://changelog.travis-ci.com/xenial-as-the-default-build-environment-99476), which does not seem to support oraclejdk8 (at least not in the 'standard' way).
Some more details are in this thread: https://travis-ci.community/t/the-travis-ci-build-could-not-be-completed-due-to-an-error/1345

language: scala
jdk:
- oraclejdk8
Expand All @@ -6,7 +7,7 @@ jdk:
scala:
- 2.11.12
- 2.12.8
- 2.13.0-RC1
- 2.13.0-RC2

env:
global:
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import ScalaModulePlugin._
import sbtcrossproject.crossProject

crossScalaVersions in ThisBuild := List("2.12.8", "2.11.12", "2.13.0-RC1")
crossScalaVersions in ThisBuild := List("2.12.8", "2.11.12", "2.13.0-RC2")

lazy val root = project.in(file("."))
.aggregate(`scala-parser-combinatorsJS`, `scala-parser-combinatorsJVM`, `scala-parser-combinatorsNative`)
Expand Down