8000 Add JDK 11 by OpenJDK to Travis CI matrix by eed3si9n · Pull Request #7311 · scala/scala · GitHub
[go: up one dir, main page]

Skip to content

Add JDK 11 by OpenJDK to Travis CI matrix #7311

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

Closed
wants to merge 4 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Don't use Travis CI default Scala version
The tests are running on wong starr because Travis CI injects `++$TRAVIS_SCALA_VERSION`.

```
java
-Xms2048M
-Xmx2048M
-Xss6M
-XX:MaxPermSize=512M
-jar
/home/travis/.sbt/launchers/0.13.17/sbt-launch.jar
++2.10.4
test
```
  • Loading branch information
eed3si9n committed Oct 4, 2018
commit 8d2ecf1f2d65efb5cfbc61d9a772e9ab880fcb2e
3 changes: 3 additions & 0 deletions .travis.yml
499D
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ jdk:
- openjdk8
- openjdk11

script:
- sbt test

cache:
directories:
- $HOME/.ivy2/cache
Expand Down
0