File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,10 @@ workflows:
8888 name : 2.13.4
8989 java_version : jdk8
9090 scala_version : 2.13.4
91+ - scala_job :
92+ name : 3.0.0-M3
93+ java_version : jdk8
94+ scala_version : 3.0.0-M3
9195 - scala_job :
9296 name : 3.0.0-M2
9397 java_version : jdk8
@@ -103,7 +107,7 @@ workflows:
103107 - scala_job :
104108 name : jdk11_3.0
105109 java_version : jdk11
106- scala_version : 3.0.0-M2
110+ scala_version : 3.0.0-M3
107111 - scala_job :
108112 name : jdk15_2.12
109113 java_version : jdk15
@@ -115,7 +119,7 @@ workflows:
115119 - scala_job :
116120 name : jdk15_3.0
117121 java_version : jdk15
118- scala_version : 3.0.0-M2
122+ scala_version : 3.0.0-M3
119123 - scala_job :
120124 name : jdk16_2.12
121125 java_version : jdk16
@@ -127,7 +131,7 @@ workflows:
127131 - scala_job :
128132 name : jdk16_3.0
129133 java_version : jdk16
130- scala_version : 3.0.0-M2
134+ scala_version : 3.0.0-M3
131135 - scalajs_job :
132136 name : sjs1.0_2.12
133137 scala_version : 2.12.12
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ import: scala/scala-dev:travis/default.yml
55language : scala
66
77scala :
8+ - 3.0.0-M3
89 - 3.0.0-M2
910 - 2.12.12
1011 - 2.13.4
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
3737 opts.split(" \\ s+" ).to[Seq ]
3838 },
3939
40- scalacOptions in Test += " -Xxml:coalescing" ,
40+ Test / scalacOptions += " -Xxml:coalescing" ,
4141
4242 // don't run Dottydoc, it errors and isn't needed anyway.
4343 // but we leave `publishArtifact` set to true, otherwise Sonatype won't let us publish
@@ -159,9 +159,7 @@ lazy val xml = crossProject(JSPlatform, JVMPlatform)
159159 }
160160 )
161161 .jsSettings(
162- // The config for Travis has an exclude, but sbt-travisci doesn't catch it.
163- crossScalaVersions -= " 3.0.0-M2" ,
164162 // Scala.js cannot run forked tests
165- fork in Test := false
163+ Test / fork := false
166164 )
167165 .jsConfigure(_.enablePlugins(ScalaJSJUnitPlugin ))
You can’t perform that action at this time.
0 commit comments