summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-01-17 23:44:01 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-01-17 23:44:01 -0800
commit1341e29629ec633a8d9db0e1717434ab560aab42 (patch)
treeb70ce24feef8ddb7e009a1521e2ca14868a7a5da /build.sbt
parent26e3702f3fccdedbb9dd44574678e9217d16959c (diff)
downloadmill-1341e29629ec633a8d9db0e1717434ab560aab42.tar.gz
mill-1341e29629ec633a8d9db0e1717434ab560aab42.tar.bz2
mill-1341e29629ec633a8d9db0e1717434ab560aab42.zip
Introduce an Ammonite build to our test suite
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt6
1 files changed, 6 insertions, 0 deletions
diff --git a/build.sbt b/build.sbt
index 34b0a593..ca1a745f 100644
--- a/build.sbt
+++ b/build.sbt
@@ -200,6 +200,11 @@ val testRepos = Map(
resourceManaged in test,
List("shared.sc", "downloadTestRepo", "pathikrit/better-files", "e235722f91f78b8f34a41b8332d7fae3e8a64141", _),
suffix = "better-files"
+ ),
+ "MILL_AMMONITE_REPO" -> ammoniteRun(
+ resourceManaged in test,
+ List("shared.sc", "downloadTestRepo", "lihaoyi/ammonite", "96ea548d5e3b72ab6ad4d9765e205bf6cc1c82ac", _),
+ suffix = "ammonite"
)
)
@@ -213,6 +218,7 @@ lazy val integration = project
javaOptions in Test := {
val kvs = Seq(
"MILL_ACYCLIC_REPO" -> testRepos("MILL_ACYCLIC_REPO").value,
+ "MILL_AMMONITE_REPO" -> testRepos("MILL_AMMONITE_REPO").value,
"MILL_JAWN_REPO" -> testRepos("MILL_JAWN_REPO").value,
"MILL_BETTERFILES_REPO" -> testRepos("MILL_BETTERFILES_REPO").value
)