Skip to content

Commit acd9a1e

Browse files
committed
Remove explicit calls to packageAll in partest aliases
They shouldn't be necessary since we call packageAll when needed anyway, and they may contribute to the OOM errors on the CI when building
1 parent c6f7ecb commit acd9a1e

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

project/Build.scala

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,21 +119,18 @@ object DottyBuild extends Build {
119119
addCommandAlias("run", "dotty-compiler/run") ++
120120
addCommandAlias(
121121
"partest",
122-
";dotty-compiler-bootstrapped/packageAll" +
123122
";dotty-compiler-bootstrapped/lockPartestFile" +
124123
";dotty-compiler-bootstrapped/test:test" +
125124
";dotty-compiler-bootstrapped/runPartestRunner"
126125
) ++
127126
addCommandAlias(
128127
"partest-only",
129-
";dotty-compiler-bootstrapped/packageAll" +
130128
";dotty-compiler-bootstrapped/lockPartestFile" +
131129
";dotty-compiler-bootstrapped/test:test-only dotc.tests" +
132130
";dotty-compiler-bootstrapped/runPartestRunner"
133131
) ++
134132
addCommandAlias(
135133
"partest-only-no-bootstrap",
136-
";packageAll" +
137134
";dotty-compiler/lockPartestFile" +
138135
";dotty-compiler/test:test-only dotc.tests" +
139136
";dotty-compiler/runPartestRunner"

0 commit comments

Comments
 (0)