summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-08 05:35:34 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-08 10:03:06 -0800
commit90d0a3388d280554eaa51371f666d2f7a965a8af (patch)
tree5995c952f5dd21667385251ee44b2372fb518117 /ci
parent54a2419b0e66eaf52211870bf04d84af87deaa80 (diff)
downloadmill-90d0a3388d280554eaa51371f666d2f7a965a8af.tar.gz
mill-90d0a3388d280554eaa51371f666d2f7a965a8af.tar.bz2
mill-90d0a3388d280554eaa51371f666d2f7a965a8af.zip
vendor ammonite.main code so we can properly handle arity-0 CLI args, fix GenIdea by making it take an Evaluator as an argument
Diffstat (limited to 'ci')
-rwxr-xr-xci/test-mill-built.sh2
-rwxr-xr-xci/test-mill-release.sh4
-rwxr-xr-xci/test-sbt-built.sh2
-rwxr-xr-xci/test_all.sh4
4 files changed, 6 insertions, 6 deletions
diff --git a/ci/test-mill-built.sh b/ci/test-mill-built.sh
index 5b3b1a28..52be8851 100755
--- a/ci/test-mill-built.sh
+++ b/ci/test-mill-built.sh
@@ -13,7 +13,7 @@ target/bin/mill devAssembly
# Second build & run tests using Mill
-out/devAssembly/dest/out.jar --all {core,scalalib,scalajslib}.test devAssembly
+out/devAssembly/dest/out.jar all {core,scalalib,scalajslib}.test devAssembly
out/devAssembly/dest/out.jar integration.test mill.integration.AmmoniteTests
out/devAssembly/dest/out.jar integration.test "mill.integration.{AcyclicTests,BetterFilesTests,JawnTests}"
out/devAssembly/dest/out.jar devAssembly
diff --git a/ci/test-mill-release.sh b/ci/test-mill-release.sh
index 5e19bcdc..e3755e93 100755
--- a/ci/test-mill-release.sh
+++ b/ci/test-mill-release.sh
@@ -9,7 +9,7 @@ git clean -xdf
sbt bin/test:assembly
# Build Mill using SBT
-target/bin/mill --all _.publishLocal releaseAssembly
+target/bin/mill all __.publishLocal releaseAssembly
mv out/releaseAssembly/dest/out.jar ~/mill-release
@@ -17,7 +17,7 @@ git clean -xdf
# Second build & run tests using Mill
-~/mill-release --all {core,scalalib,scalajslib}.test devAssembly
+~/mill-release all {core,scalalib,scalajslib}.test devAssembly
~/mill-release integration.test mill.integration.AmmoniteTests
~/mill-release integration.test "mill.integration.{AcyclicTests,BetterFilesTests,JawnTests}"
~/mill-release devAssembly
diff --git a/ci/test-sbt-built.sh b/ci/test-sbt-built.sh
index ebb3ddb5..3a60cbd3 100755
--- a/ci/test-sbt-built.sh
+++ b/ci/test-sbt-built.sh
@@ -8,7 +8,7 @@ git clean -xdf
sbt bin/test:assembly
# Run tests using Mill built using SBT
-target/bin/mill --all {core,scalalib,scalajslib}.test devAssembly
+target/bin/mill all {core,scalalib,scalajslib}.test devAssembly
target/bin/mill integration.test mill.integration.AmmoniteTests
target/bin/mill integration.test "mill.integration.{AcyclicTests,BetterFilesTests,JawnTests}"
target/bin/mill devAssembly
diff --git a/ci/test_all.sh b/ci/test_all.sh
index 74b6d203..a04f7119 100755
--- a/ci/test_all.sh
+++ b/ci/test_all.sh
@@ -9,7 +9,7 @@ git clean -xdf
sbt core/test scalalib/test scalajslib/test integration/test bin/test:assembly
# Run tests using Mill built using SBT
-target/bin/mill --all {core,scalalib,scalajslib,integration}.test devAssembly
+target/bin/mill all {core,scalalib,scalajslib,integration}.test devAssembly
# Second build & run tests using Mill
-out/devAssembly/dest/out.jar --all {core,scalalib,scalajslib,integration}.test devAssembly \ No newline at end of file
+out/devAssembly/dest/out.jar all {core,scalalib,scalajslib,integration}.test devAssembly \ No newline at end of file