Skip to content

Commit 53f459e

Browse files
authored
Merge pull request #23 from armanbilge/topic/scala-2.11
Cross-build for Scala 2.11
2 parents 25002da + 4a34eb2 commit 53f459e

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
os: [ubuntu-latest]
29-
scala: [2.12.14, 2.13.6, 3.0.2]
29+
scala: [2.11.12, 2.12.14, 2.13.6, 3.0.2]
3030
3131
ci: [ciNode, ciFirefox, ciChrome, ciJSDOMNodeJS]
3232
runs-on: ${{ matrix.os }}

build.sbt

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ ThisBuild / scmInfo := Some(
4545

4646
// build and matrix configuration
4747

48-
ThisBuild / crossScalaVersions := Seq("2.12.14", "2.13.6", "3.0.2")
48+
ThisBuild / crossScalaVersions := Seq("2.11.12", "2.12.14", "2.13.6", "3.0.2")
4949

5050
ThisBuild / githubWorkflowBuildPreamble ++= Seq(
5151
WorkflowStep.Use(

core/src/test/scala/org/scalajs/macrotaskexecutor/MacrotaskExecutorSuite.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class MacrotaskExecutorSuite extends FunSuite {
3030
if (n <= 0)
3131
Future(0)
3232
else
33-
Future.unit.flatMap(_ => loop(n - 1)).map(_ + 1)
33+
Future.successful(()).flatMap(_ => loop(n - 1)).map(_ + 1)
3434

3535
val start = System.currentTimeMillis()
3636
val MinimumClamp = 10000 * 2 * 4 // HTML5 specifies a 4ms clamp (https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers.setTimeout#Minimum.2F_maximum_delay_and_timeout_nesting)
@@ -52,7 +52,7 @@ class MacrotaskExecutorSuite extends FunSuite {
5252
def loop(): Future[Unit] =
5353
Future(cancel) flatMap { canceled =>
5454
if (canceled)
55-
Future.unit
55+
Future.successful(())
5656
else
5757
loop()
5858
}

webworker/src/test/scala/org/scalajs/macrotaskexecutor/WebWorkerMacrotaskSuite.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
package org.scalajs.macrotaskexecutor
1818

1919
import munit.FunSuite
20+
import org.scalajs.dom.MessageEvent
2021
import org.scalajs.dom.webworkers.Worker
2122

2223
import scala.concurrent.Promise
@@ -41,7 +42,7 @@ class WebWorkerMacrotaskSuite extends FunSuite {
4142
s"file://${targetDir}/scala-js-macrotask-executor-webworker-fastopt/main.js"
4243
)
4344

44-
worker.onmessage = { event =>
45+
worker.onmessage = { (event: MessageEvent) =>
4546
event.data match {
4647
case log: String => println(log)
4748
case success: Boolean => p.success(success)

0 commit comments

Comments
 (0)