Skip to content

Commit 6d1c004

Browse files
committed
Add meta project dotty-bootstrapped
This way you can run both the dotty-library-bootstrapped and dotty-compiler-bootstrapped tests with one command: sbt dotty-bootstrapped/test
1 parent bea96e4 commit 6d1c004

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.drone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ pipeline:
1010
matrix:
1111
TEST:
1212
- test
13-
- ;publishLocal;dotty-compiler-bootstrapped/test
13+
- ;publishLocal;dotty-bootstrapped/test
1414
- partest-only-no-bootstrap --show-diff --verbose
1515
- partest-only --show-diff --verbose

project/Build.scala

+6
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,12 @@ object DottyBuild extends Build {
140140
).
141141
settings(publishing)
142142

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+
)
143149

144150
lazy val `dotty-interfaces` = project.in(file("interfaces")).
145151
settings(sourceStructure).

0 commit comments

Comments
 (0)