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

Updated jdk versions #238

Merged
merged 1 commit into from
Nov 6, 2020
Merged
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
17 changes: 10 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,15 @@ stages:
scala_212: &scala_212 2.12.12
scala_213: &scala_213 2.13.3

jdk_lts: &jdk_lts openjdk11
jdk_latest: &jdk_latest openjdk15

scala:
- *scala_212
- *scala_213
jdk:
- openjdk8
- openjdk13
- *jdk_lts
- *jdk_latest

script: sbt ++$TRAVIS_SCALA_VERSION ciBuild

Expand All @@ -43,31 +46,31 @@ jobs:
- stage: Format
name: Check with Scalafmt
script: sbt ++$TRAVIS_SCALA_VERSION checkFormat
jdk: openjdk8
jdk: *jdk_lts
scala: *scala_213

- stage: Publish Snapshot 2.12
name: Publish a snapshot for Scala 2.12
script: CI_SNAPSHOT_RELEASE=publish sbt ++$TRAVIS_SCALA_VERSION releaseIt
jdk: openjdk8
jdk: *jdk_lts
scala: *scala_212

- stage: Publish Snapshot 2.13
name: Publish a snapshot for Scala 2.13
script: CI_SNAPSHOT_RELEASE=publish sbt ++$TRAVIS_SCALA_VERSION releaseIt
jdk: openjdk8
jdk: *jdk_lts
scala: *scala_213

- stage: Release 2.12
name: Release for Scala 2.12
script: CI_RELEASE=publishSigned sbt ++$TRAVIS_SCALA_VERSION releaseIt
jdk: openjdk8
jdk: *jdk_lts
scala: *scala_212

- stage: Release 2.13
name: Release for Scala 2.13
script: CI_RELEASE=publishSigned sbt ++$TRAVIS_SCALA_VERSION releaseIt
jdk: openjdk8
jdk: *jdk_lts
scala: *scala_213

cache:
Expand Down