File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change 6
6
- 2.13.0
7
7
8
8
env :
9
- - SCALAJS_VERSION= ADOPTOPENJDK=8
10
- - SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=8
11
- - SCALAJS_VERSION=1.0.0-M8 ADOPTOPENJDK=8
12
- - SCALAJS_VERSION= ADOPTOPENJDK=11
13
- - SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=11
14
- - SCALAJS_VERSION=1.0.0-M8 ADOPTOPENJDK=11
9
+ - SCALAJS_VERSION= ADOPTOPENJDK=8
10
+ - SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=8
11
+ - SCALAJS_VERSION=1.0.0-RC1 ADOPTOPENJDK=8
12
+ - SCALAJS_VERSION= ADOPTOPENJDK=11
13
+ - SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=11
14
+ - SCALAJS_VERSION=1.0.0-RC1 ADOPTOPENJDK=11
15
15
16
16
matrix :
17
17
Original file line number Diff line number Diff line change @@ -14,7 +14,13 @@ lazy val commonSettings = Seq(
14
14
|See the NOTICE file distributed with this work for
15
15
|additional information regarding copyright ownership.
16
16
| """ .stripMargin)),
17
- scalaModuleMimaPreviousVersion := Some (" 2.1.1" ),
17
+ scalaModuleMimaPreviousVersion := {
18
+ // We need to create a release version first to use MiMa
19
+ if (sys.env.get(" SCALAJS_VERSION" ).exists(_.startsWith(" 1.0.0-" )))
20
+ None
21
+ else
22
+ Some (" 2.1.1" )
23
+ }
18
24
)
19
25
20
26
lazy val root = project
You can’t perform that action at this time.
0 commit comments