Skip to content

Commit 7bf86d2

Browse files
Merge pull request #3141 from dotty-staging/dotty-optimised
Add abstraction over non-bootstrapped/bootstrapped/optimised builds
2 parents e208878 + 273a335 commit 7bf86d2

File tree

4 files changed

+167
-126
lines changed

4 files changed

+167
-126
lines changed

.drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pipeline:
2929
image: lampepfl/dotty:2017-09-08
3030
commands:
3131
- cp -R . /tmp/3/ && cd /tmp/3/
32-
- ./project/scripts/sbt ";set bootstrapOptimised in ThisBuild := true ;dotty-bootstrapped/test"
32+
- ./project/scripts/sbt dotty-optimised/test
3333

3434
test_sbt:
3535
group: test

build.sbt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,31 @@
11
val dotty = Build.dotty
22
val `dotty-bootstrapped` = Build.`dotty-bootstrapped`
3+
val `dotty-optimised` = Build.`dotty-optimised`
34
val `dotty-interfaces` = Build.`dotty-interfaces`
45
val `dotty-doc` = Build.`dotty-doc`
56
val `dotty-doc-bootstrapped` = Build.`dotty-doc-bootstrapped`
7+
val `dotty-doc-optimised` = Build.`dotty-doc-optimised`
68
val `dotty-bot` = Build.`dotty-bot`
79
val `dotty-compiler` = Build.`dotty-compiler`
810
val `dotty-compiler-bootstrapped` = Build.`dotty-compiler-bootstrapped`
11+
val `dotty-compiler-optimised` = Build.`dotty-compiler-optimised`
912
val `dotty-library` = Build.`dotty-library`
1013
val `dotty-library-bootstrapped` = Build.`dotty-library-bootstrapped`
14+
val `dotty-library-optimised` = Build.`dotty-library-optimised`
1115
val `dotty-sbt-bridge` = Build.`dotty-sbt-bridge`
1216
val `dotty-sbt-bridge-bootstrapped` = Build.`dotty-sbt-bridge-bootstrapped`
1317
val `dotty-language-server` = Build.`dotty-language-server`
1418
val sjsSandbox = Build.sjsSandbox
1519
val `dotty-bench` = Build.`dotty-bench`
1620
val `dotty-bench-bootstrapped` = Build.`dotty-bench-bootstrapped`
21+
val `dotty-bench-optimised` = Build.`dotty-bench-optimised`
1722
val `scala-library` = Build.`scala-library`
1823
val `scala-compiler` = Build.`scala-compiler`
1924
val `scala-reflect` = Build.`scala-reflect`
2025
val scalap = Build.scalap
2126
val dist = Build.dist
2227
val `dist-bootstrapped` = Build.`dist-bootstrapped`
28+
val `dist-optimised` = Build.`dist-optimised`
2329

2430
val `sbt-dotty` = Build.`sbt-dotty`
2531
val `vscode-dotty` = Build.`vscode-dotty`

0 commit comments

Comments
 (0)