-
Notifications
You must be signed in to change notification settings - Fork 161
/
Copy pathBuild.scala
158 lines (144 loc) · 5.2 KB
/
Build.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
import sbt._
import sbt.Keys._
import java.util.concurrent.TimeUnit
import org.openqa.selenium.{Capabilities, WebDriver}
import org.openqa.selenium.chrome.{ChromeDriver, ChromeOptions}
import org.openqa.selenium.firefox.{FirefoxOptions, FirefoxProfile}
import org.openqa.selenium.remote.server.{DriverFactory, DriverProvider}
import org.scalajs.jsenv.jsdomnodejs.JSDOMNodeJSEnv
import org.scalajs.jsenv.selenium.SeleniumJSEnv
import org.scalajs.sbtplugin.ScalaJSJUnitPlugin
import org.scalajs.sbtplugin.ScalaJSPlugin
import org.scalajs.sbtplugin.ScalaJSPlugin.autoImport._
import sbtbuildinfo.BuildInfoPlugin
import sbtbuildinfo.BuildInfoPlugin.autoImport._
import scalafix.sbt.ScalafixPlugin
import scalafix.sbt.ScalafixPlugin.autoImport._
import scalatex.ScalatexReadme
import Dependencies._
import Lib._
object Build {
// TODO: Change root from {.root => .} and dom from {. => dom}
lazy val root = project
.in(file("."))
.configure(commonSettings, crossScala, preventPublication)
.settings(
name := "Scala.js DOM",
)
.aggregate(
scalafixRules,
dom,
testsShared,
testsWebworker,
testsChrome,
testsFirefox,
testsNodeJsdom,
example,
// readme, // This is a Scala 2.12 only module
)
lazy val dom = project
.dependsOn(scalafixRules % ScalafixConfig)
.enablePlugins(ScalaJSPlugin, ScalafixPlugin)
.configure(commonSettings, crossScala, publicationSetttings)
.settings(
moduleName := "scalajs-dom",
Compile / unmanagedSourceDirectories +=
collectionsEraDependentDirectory(scalaVersion.value, (Compile / sourceDirectory).value),
)
lazy val scalafixRules = project
.in(file("scalafix"))
.configure(commonSettings, crossScala, preventPublication)
.settings(
libraryDependencies += Dep.scalafixCore.value,
)
lazy val testsShared = project
.in(file("tests-shared"))
.dependsOn(dom)
.enablePlugins(ScalaJSPlugin, ScalaJSJUnitPlugin)
.configure(commonSettings, crossScala, preventPublication, moveTestLibsToCompile)
lazy val testsWebworker = project
.in(file("tests-webworker"))
.dependsOn(testsShared)
.enablePlugins(ScalaJSPlugin, ScalaJSJUnitPlugin, BuildInfoPlugin)
.configure(commonSettings, crossScala, preventPublication, moveTestLibsToCompile)
.settings(
buildInfoKeys := Seq[BuildInfoKey](
"wwJsPath" -> (Compile / fastOptJS / artifactPath).value.absolutePath,
),
buildInfoPackage := "org.scalajs.dom.tests.webworker",
scalaJSUseMainModuleInitializer := true,
)
def testsWebworkers: Project => Project = _
.dependsOn(testsWebworker)
.settings(
Test / test := {
val _ = (testsWebworker / Compile / fastOptJS).value
(Test / test).value
},
)
lazy val testsChrome = project
.in(file("tests-chrome"))
.dependsOn(testsShared % Test)
.enablePlugins(ScalaJSPlugin, ScalaJSJUnitPlugin)
.configure(commonSettings, crossScala, preventPublication, testsWebworkers)
.settings(
Test / jsEnv := {
System.setProperty("webdriver.chrome.silentOutput", "true")
val o = new ChromeOptions()
o.setHeadless(true)
o.addArguments("--allow-file-access-from-files")
val df = new DriverFactory {
private[this] val default = SeleniumJSEnv.Config().driverFactory
override def newInstance(c: Capabilities): WebDriver = {
val d = default.newInstance(c).asInstanceOf[ChromeDriver]
d.manage.timeouts.pageLoadTimeout(if (inCI) 10 else 1, TimeUnit.MINUTES)
d.manage.timeouts.setScriptTimeout(if (inCI) 10 else 1, TimeUnit.MINUTES)
d
}
override def registerDriverProvider(p: DriverProvider): Unit =
default.registerDriverProvider(p)
}
new SeleniumJSEnv(o, SeleniumJSEnv.Config().withDriverFactory(df))
},
)
lazy val testsFirefox = project
.in(file("tests-firefox"))
.dependsOn(testsShared % Test)
.enablePlugins(ScalaJSPlugin, ScalaJSJUnitPlugin)
.configure(commonSettings, crossScala, preventPublication, testsWebworkers)
.settings(
Test / jsEnv := {
val p = new FirefoxProfile()
p.setPreference("privacy.file_unique_origin", false)
val o = new FirefoxOptions()
o.setProfile(p)
o.setHeadless(true)
new SeleniumJSEnv(o)
},
)
lazy val testsNodeJsdom = project
.in(file("tests-node-jsdom"))
.dependsOn(testsShared % Test)
.enablePlugins(ScalaJSPlugin, ScalaJSJUnitPlugin)
.configure(commonSettings, crossScala, preventPublication)
.settings(
Test / jsEnv := new JSDOMNodeJSEnv,
)
lazy val example = project
.dependsOn(dom)
.enablePlugins(ScalaJSPlugin)
.configure(commonSettings, crossScala, preventPublication)
lazy val readme =
ScalatexReadme(
projectId = "readme",
wd = file(""),
url = "https://github.com/scala-js/scala-js-dom/tree/main",
source = "Index",
autoResources = Seq("example-opt.js"),
)
.configure(commonSettings, preventPublication)
.settings(
scalaVersion := Ver.scala212,
Compile / resources += (example / Compile / fullOptJS).value.data,
)
}