File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ object DottyBuild extends Build {
346
346
List (" -XX:+TieredCompilation" , " -XX:TieredStopAtLevel=1" )
347
347
else List ()
348
348
349
- " -XX:+PrintGCDetails " :: (" -DpartestParentID=" + pid) :: tuning ::: agentOptions ::: travis_build ::: path.toList
349
+ (" -DpartestParentID=" + pid) :: tuning ::: agentOptions ::: travis_build ::: path.toList
350
350
}
351
351
).
352
352
settings(publishing)
@@ -423,7 +423,13 @@ object DottyBuild extends Build {
423
423
settings(
424
424
ScriptedPlugin .sbtTestDirectory := baseDirectory.value / " sbt-test" ,
425
425
ScriptedPlugin .scriptedLaunchOpts := Seq (" -Xmx1024m" ),
426
- ScriptedPlugin .scriptedBufferLog := false
426
+ ScriptedPlugin .scriptedBufferLog := false ,
427
+ ScriptedPlugin .scripted := {
428
+ val x1 = (publishLocal in `dotty-compiler`).value
429
+ val x2 = (publishLocal in `dotty-library`).value
430
+ val x3 = (publishLocal in `dotty-interfaces`).value
431
+ ScriptedPlugin .scriptedTask.evaluated
432
+ }
427
433
// TODO: Use this instead of manually copying DottyInjectedPlugin.scala
428
434
// everywhere once https://github.com/sbt/sbt/issues/2601 gets fixed.
429
435
/* ,
You can’t perform that action at this time.
0 commit comments