File tree 2 files changed +13
-7
lines changed
2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ scala:
10
10
- 2.13.1
11
11
12
12
env :
13
- - SCALAJS_VERSION= ADOPTOPENJDK=8
14
- - SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=8
15
- - SCALAJS_VERSION=1.0.0-RC2 ADOPTOPENJDK=8
16
- - SCALAJS_VERSION= ADOPTOPENJDK=11
17
- - SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=11
18
- - SCALAJS_VERSION=1.0.0-RC2 ADOPTOPENJDK=11
13
+ - SCALAJS_VERSION= ADOPTOPENJDK=8
14
+ - SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=8
15
+ - SCALAJS_VERSION=1.0.0 ADOPTOPENJDK=8
16
+ - SCALAJS_VERSION= ADOPTOPENJDK=11
17
+ - SCALAJS_VERSION=0.6.31 ADOPTOPENJDK=11
18
+ - SCALAJS_VERSION=1.0.0 ADOPTOPENJDK=11
19
19
20
20
matrix :
21
21
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.3" )
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.3" )
23
+ }
18
24
)
19
25
20
26
lazy val root = project
You can’t perform that action at this time.
0 commit comments