summaryrefslogtreecommitdiff
path: root/ci
diff options
context:
space:
mode:
authorRobby <robby@k-state.edu>2018-03-27 16:38:11 -0500
committerRobby <robby@k-state.edu>2018-03-27 16:38:11 -0500
commita796f0a1381632560b6251a93466957319065966 (patch)
tree500c0781ef1c0095e894f251f04e66bdf194dee3 /ci
parenta4713c3842c91a914cbc0ccd1f57339fa030f676 (diff)
downloadmill-a796f0a1381632560b6251a93466957319065966.tar.gz
mill-a796f0a1381632560b6251a93466957319065966.tar.bz2
mill-a796f0a1381632560b6251a93466957319065966.zip
Removed ~/.mill before running mill test.
Diffstat (limited to 'ci')
-rwxr-xr-xci/test-mill-dev.sh4
-rwxr-xr-xci/test-mill-release.sh2
2 files changed, 5 insertions, 1 deletions
diff --git a/ci/test-mill-dev.sh b/ci/test-mill-dev.sh
index 11d64154..ae8556fb 100755
--- a/ci/test-mill-dev.sh
+++ b/ci/test-mill-dev.sh
@@ -5,9 +5,11 @@ set -eux
# Starting from scratch...
git clean -xdf
-# Build Mill using SBT
+# Build Mill
mill -i dev.assembly
+rm -fR ~/.mill
+
# Second build & run tests using Mill
out/dev/assembly/dest/mill -i all {clientserver,main,scalalib,scalajslib}.test
diff --git a/ci/test-mill-release.sh b/ci/test-mill-release.sh
index 8c0aca2f..c05f5347 100755
--- a/ci/test-mill-release.sh
+++ b/ci/test-mill-release.sh
@@ -9,6 +9,8 @@ ci/publish-local.sh
git clean -xdf
+rm -fR ~/.mill
+
# Second build & run tests using Mill
~/mill-release -i integration.test "mill.integration.forked.{AcyclicTests,UpickleTests}"