Skip to content
This repository was archived by the owner on Nov 29, 2021. It is now read-only.

Update scala-library to 2.12.13 #348

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ script:
- bash sodium_setup.sh
- sbt ++$TRAVIS_SCALA_VERSION clean
- sbt ++$TRAVIS_SCALA_VERSION test
- test $TRAVIS_SCALA_VERSION != "2.12.10" || sbt ++$TRAVIS_SCALA_VERSION tut
- test $TRAVIS_SCALA_VERSION != "2.12.10" || sbt ++$TRAVIS_SCALA_VERSION microsite/makeMicrosite
- test $TRAVIS_SCALA_VERSION != "2.12.13" || sbt ++$TRAVIS_SCALA_VERSION tut
- test $TRAVIS_SCALA_VERSION != "2.12.13" || sbt ++$TRAVIS_SCALA_VERSION microsite/makeMicrosite

after_success:
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_REPO_SLUG == "jmcardon/tsec" && sbt ++$TRAVIS_SCALA_VERSION publish
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_REPO_SLUG == "jmcardon/tsec" && test $TRAVIS_SCALA_VERSION == "2.12.10" && sbt ++$TRAVIS_SCALA_VERSION microsite/makeMicrosite
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_REPO_SLUG == "jmcardon/tsec" && test $TRAVIS_SCALA_VERSION == "2.12.13" && sbt ++$TRAVIS_SCALA_VERSION microsite/makeMicrosite

deploy:
provider: pages
Expand Down
4 changes: 2 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ lazy val commonSettings = Seq(
Libraries.fs2IO
),
organization in ThisBuild := "io.github.jmcardon",
scalaVersion := "2.12.10",
crossScalaVersions := Seq("2.13.1", "2.12.10"),
scalaVersion := "2.12.13",
crossScalaVersions := Seq("2.13.1", "2.12.13"),
fork in test := true,
fork in run := true,
scalacOptions in (Compile, doc) ++= Seq(
Expand Down