Skip to content

Commit f629581

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 ;publishLocal;dotty-bootstrapped/test
1 parent e28daef commit f629581

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-
- 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
@@ -138,6 +138,12 @@ object DottyBuild extends Build {
138138
).
139139
settings(publishing)
140140

141+
// Meta project aggregating all bootstrapped projects
142+
lazy val `dotty-bootstrapped` = project.
143+
aggregate(`dotty-library-bootstrapped`, `dotty-compiler-bootstrapped`).
144+
settings(
145+
publishArtifact := false
146+
)
141147

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

0 commit comments

Comments
 (0)