Skip to content

Commit

Permalink
Removed ~/.mill before running mill test.
Browse files Browse the repository at this point in the history
  • Loading branch information
robby-phd committed Mar 27, 2018
1 parent a4713c3 commit a796f0a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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%" &&
Expand Down
4 changes: 3 additions & 1 deletion ci/test-mill-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

2 changes: 2 additions & 0 deletions ci/test-mill-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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}"

0 comments on commit a796f0a

Please sign in to comment.