summaryrefslogtreecommitdiff
path: root/test.sh
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-12-30 19:01:03 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2017-12-30 20:35:31 -0800
commit356dca0f92931b07e1a80013aefb025b6a7d7d42 (patch)
tree6517cbd15943361cbd896e64a7007c058f20281d /test.sh
parente84eff79f6f23b9a6518c74ba137ab4ce1347929 (diff)
downloadmill-356dca0f92931b07e1a80013aefb025b6a7d7d42.tar.gz
mill-356dca0f92931b07e1a80013aefb025b6a7d7d42.tar.bz2
mill-356dca0f92931b07e1a80013aefb025b6a7d7d42.zip
`Core` -> `core`, for consistency with SBT naming schemes
`ScalaPlugin` -> `scalalib`, to avoid confusion with Scala compiler plugins `ScalaModule` -> `module`, to be used via `scalalib.Module`, avoid unnecessary duplication in th name prefix `plugin` -> `moduledefs`, to more accurately describe what it does (since it includes `Cacher` as well)
Diffstat (limited to 'test.sh')
-rwxr-xr-xtest.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/test.sh b/test.sh
index 13d81631..01d1a485 100755
--- a/test.sh
+++ b/test.sh
@@ -6,13 +6,13 @@ set -eux
git clean -xdf
# First build & run tests using SBT
-sbt core/test scalaplugin/test scalajsplugin/test bin/test:assembly
+sbt core/test scalalib/test scalajslib/test bin/test:assembly
# Build Mill using SBT
bin/target/mill devAssembly
# Second build & run tests using Mill
-out/devAssembly/dest Core.test
-out/devAssembly/dest ScalaPlugin.test
-out/devAssembly/dest ScalaJSPlugin.test
+out/devAssembly/dest core.test
+out/devAssembly/dest scalalib.test
+out/devAssembly/dest scalajslib.test
out/devAssembly/dest devAssembly \ No newline at end of file