You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// hopefully avoid intermittent OutOfMemoryErrors with default 1.5G heap?
155
+
options: ["-Xmx2048m"]
156
+
projects: [ tools, testSuite, stubs ]
157
+
commands: ${vars.default-commands} [
158
+
// - Disable compiler/test because it is very fragile.
159
+
"set test in (Build.compiler, Test) := {}"
160
+
// - Disable fatal Scaladoc warnings, also fragile
161
+
"removeScalacOptions -Xfatal-warnings"
162
+
// - We disable source map tests to save ourselves a `npm install source-map-support` on the workers.
163
+
// Although only `testSuite` actually has tests, dbuild will try to run the tests for all projects
164
+
// that `testSuite` depends on (transitively), so we need to set it in a bunch of places.
165
+
"set Seq(library, testInterface, jUnitRuntime, testSuite).map(p => jsEnv in p := new org.scalajs.jsenv.nodejs.NodeJSEnv(org.scalajs.jsenv.nodejs.NodeJSEnv.Config().withExecutable(\""${vars.node}"\").withSourceMap(false)))"
166
+
]
167
+
}
168
+
}
169
+
170
+
// frozen (June 2017) at an April 2017 commit; newer commits
// hopefully avoid intermittent OutOfMemoryErrors with default 1.5G heap?
365
-
options: ["-Xmx2048m"]
366
-
projects: [ tools, testSuite, stubs ]
367
-
commands: ${vars.default-commands} [
368
-
// - Disable compiler/test because it is very fragile.
369
-
"set test in (Build.compiler, Test) := {}"
370
-
// - Disable fatal Scaladoc warnings, also fragile
371
-
"removeScalacOptions -Xfatal-warnings"
372
-
// - We disable source map tests to save ourselves a `npm install source-map-support` on the workers.
373
-
// Although only `testSuite` actually has tests, dbuild will try to run the tests for all projects
374
-
// that `testSuite` depends on (transitively), so we need to set it in a bunch of places.
375
-
"set Seq(library, testInterface, jUnitRuntime, testSuite).map(p => jsEnv in p := new org.scalajs.jsenv.nodejs.NodeJSEnv(org.scalajs.jsenv.nodejs.NodeJSEnv.Config().withExecutable(\""${vars.node}"\").withSourceMap(false)))"
376
-
]
377
-
}
378
-
}
379
-
380
380
// forked (April 2017) for 2.12.2 and 2.13 compat.
0 commit comments