We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bea96e4 commit 6d1c004Copy full SHA for 6d1c004
.drone.yml
@@ -10,6 +10,6 @@ pipeline:
10
matrix:
11
TEST:
12
- test
13
- - ;publishLocal;dotty-compiler-bootstrapped/test
+ - ;publishLocal;dotty-bootstrapped/test
14
- partest-only-no-bootstrap --show-diff --verbose
15
- partest-only --show-diff --verbose
project/Build.scala
@@ -140,6 +140,12 @@ object DottyBuild extends Build {
140
).
141
settings(publishing)
142
143
+ // Meta project aggregating all bootstrapped projects
144
+ lazy val `dotty-bootstrapped` = project.
145
+ aggregate(`dotty-library-bootstrapped`, `dotty-compiler-bootstrapped`).
146
+ settings(
147
+ publishArtifact := false
148
+ )
149
150
lazy val `dotty-interfaces` = project.in(file("interfaces")).
151
settings(sourceStructure).
0 commit comments