File tree 2 files changed +7
-2
lines changed
2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 40
40
depends_on : [ clone ]
41
41
commands :
42
42
- cp -R . /tmp/2/ && cd /tmp/2/
43
- - ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test ;dotty-staging/test ;sjsSandbox/run;sjsSandbox/test;sjsJUnitTests/test"
43
+ - ./project/scripts/sbt ";dotty-bootstrapped/compile ;dotty-bootstrapped/test ;dotty-staging/test ;sjsSandbox/run;sjsSandbox/test;sjsJUnitTests/test ;configureIDE "
44
44
- ./project/scripts/bootstrapCmdTests
45
45
46
46
- name : community_build
Original file line number Diff line number Diff line change @@ -54,6 +54,10 @@ object MyScalaJSPlugin extends AutoPlugin {
54
54
55
55
// Typecheck the Scala.js IR found on the classpath
56
56
scalaJSLinkerConfig ~= (_.withCheckIR(true )),
57
+
58
+ // Exclude all these projects from `configureIDE/launchIDE` since they
59
+ // take time to compile, print a bunch of warnings, and are rarely edited.
60
+ excludeFromIDE := true
57
61
)
58
62
}
59
63
@@ -760,7 +764,8 @@ object Build {
760
764
settings(
761
765
unmanagedSourceDirectories in Compile :=
762
766
(unmanagedSourceDirectories in (`dotty-library-bootstrapped`, Compile )).value,
763
- scalacOptions += " -Yerased-terms" , // support declaration of scala.compiletime.erasedValue
767
+ scalacOptions in Compile :=
768
+ (scalacOptions in (`dotty-library-bootstrapped`, Compile )).value,
764
769
)
765
770
766
771
lazy val tastyCoreSettings = Seq (
You can’t perform that action at this time.
0 commit comments