summaryrefslogtreecommitdiff
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
parenta4713c3842c91a914cbc0ccd1f57339fa030f676 (diff)
downloadmill-a796f0a1381632560b6251a93466957319065966.tar.gz
mill-a796f0a1381632560b6251a93466957319065966.tar.bz2
mill-a796f0a1381632560b6251a93466957319065966.zip
Removed ~/.mill before running mill test.
-rw-r--r--.appveyor.yml1
-rwxr-xr-xci/test-mill-dev.sh4
-rwxr-xr-xci/test-mill-release.sh2
3 files changed, 6 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index e353b6a6..693bd85e 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -36,6 +36,7 @@ build_script:
C:\%MSYS2_DIR%\usr\bin\bash -lc "curl -Lo /usr/local/bin/mill %MILL_URL%" &&
C:\%MSYS2_DIR%\usr\bin\bash -lc 'chmod +x /usr/local/bin/mill' &&
C:\%MSYS2_DIR%\usr\bin\bash -lc "cd /c/mill && mill -i all __.publishLocal release" &&
+ rd /s /q %USERPROFILE%\.mill &&
C:\%MSYS2_DIR%\usr\bin\bash -lc "cd /c/mill && out/release/dest/mill -i all main.test scalajslib.test")
- if [%COMPILER%]==[cygwin] (
SET "PATH=%JAVA_HOME%\bin;C:\%CYGWIN_DIR%\bin;C:\%CYGWIN_DIR%\usr\bin;%PATH%" &&
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}"