Skip to content
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