summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-01-13 23:23:39 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-13 23:23:39 -0800
commit3733cb5e4d041453aff84b35f25fa4162fae5818 (patch)
treecd15c7cff7a6759fde7190bfe58b8a7f68c1bebe /build.sc
parentff7eadd0d926a980ae31261bb84900640ca4cd9b (diff)
downloadmill-3733cb5e4d041453aff84b35f25fa4162fae5818.tar.gz
mill-3733cb5e4d041453aff84b35f25fa4162fae5818.tar.bz2
mill-3733cb5e4d041453aff84b35f25fa4162fae5818.zip
WIP getting rid of `discover/` phase: `core/test:compile` works, but some things still stubbed out with `???`
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sc b/build.sc
index eaca879d..e780aad6 100755
--- a/build.sc
+++ b/build.sc
@@ -30,7 +30,7 @@ trait MillModule extends SbtModule{ outer =>
def testArgs = T{ Seq.empty[String] }
val test = new Tests(implicitly)
- class Tests(ctx0: mill.Module.Ctx) extends mill.Module()(ctx0) with super.Tests{
+ class Tests(ctx0: mill.mill.define.Ctx) extends mill.Module()(ctx0) with super.Tests{
def defaultCommandName() = "forkTest"
def forkArgs = T{ testArgs() }
def projectDeps =
@@ -65,7 +65,7 @@ object core extends MillModule {
}
val test = new Tests(implicitly)
- class Tests(ctx0: mill.Module.Ctx) extends super.Tests(ctx0){
+ class Tests(ctx0: mill.mill.define.Ctx) extends super.Tests(ctx0){
def generatedSources = T {
mkdir(T.ctx().dest)
shared.generateCoreTestSources(T.ctx().dest)