Skip to content

CI updates: JDK 17, Scala 2.13.6, drop Scala 3.0.0-RC3 #237

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 6 commits into from
Closed
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
15 changes: 11 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,22 @@ import: scala/scala-dev:travis/default.yml
language: scala

scala:
- 3.0.0
- 3.0.0-RC3
- 3.0.2
- 2.11.12
- 2.12.14
- 2.13.5
- 2.12.15
- 2.13.6

env:
- ADOPTOPENJDK=8
- ADOPTOPENJDK=11
- ADOPTOPENJDK=17

# because it hits scala/bug#12419 which will almost certainly
# never be fixed in the 2.11.x series
jobs:
exclude:
- scala: 2.11.12
env: ADOPTOPENJDK=17

install:
- git fetch --tags # get all tags for sbt-dynver
Expand Down
3 changes: 3 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
ThisBuild / resolvers += "scala-integration" at
"https://scala-ci.typesafe.com/artifactory/scala-integration/"

val disableDocs =
sys.props("nodocs") == "true" ||
// on jdk 11 https://github.com/scala/scala-java8-compat/issues/160, seems to fail the build (not on 8)
Expand Down