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
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ scala:
- 2.13.0

env:
- SCALAJS_VERSION= ADOPTOPENJDK=8
- SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=8
- SCALAJS_VERSION=1.0.0-M8 ADOPTOPENJDK=8
- SCALAJS_VERSION= ADOPTOPENJDK=11
- SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=11
- SCALAJS_VERSION=1.0.0-M8 ADOPTOPENJDK=11
- SCALAJS_VERSION= ADOPTOPENJDK=8
- SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=8
- SCALAJS_VERSION=1.0.0-RC1 ADOPTOPENJDK=8
- SCALAJS_VERSION= ADOPTOPENJDK=11
- SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=11
- SCALAJS_VERSION=1.0.0-RC1 ADOPTOPENJDK=11

matrix:

Expand Down
8 changes: 7 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ lazy val commonSettings = Seq(
|See the NOTICE file distributed with this work for
|additional information regarding copyright ownership.
|""".stripMargin)),
scalaModuleMimaPreviousVersion := Some("2.1.1"),
scalaModuleMimaPreviousVersion := {
// We need to create a release version first to use MiMa
if(sys.env.get("SCALAJS_VERSION").exists(_.startsWith("1.0.0-")))
None
else
Some("2.1.1")
}
)

lazy val root = project
Expand Down