summaryrefslogtreecommitdiff
path: root/ci/test4.sh
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-02-04 11:44:29 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-02-04 13:29:30 -0800
commitf47697c1da18407374cf11372af36c4960d80576 (patch)
tree14dd0fe05a01eacd9b1ee8f655e7173410446aed /ci/test4.sh
parent2536dc8c071c7c0fc41a0bd806d91ecad300f27c (diff)
downloadmill-f47697c1da18407374cf11372af36c4960d80576.tar.gz
mill-f47697c1da18407374cf11372af36c4960d80576.tar.bz2
mill-f47697c1da18407374cf11372af36c4960d80576.zip
Fix tests
Diffstat (limited to 'ci/test4.sh')
-rwxr-xr-xci/test4.sh16
1 files changed, 10 insertions, 6 deletions
diff --git a/ci/test4.sh b/ci/test4.sh
index fb3483e8..86e6ee29 100755
--- a/ci/test4.sh
+++ b/ci/test4.sh
@@ -12,15 +12,19 @@ git clean -xdf
sbt bin/test:assembly
# Build Mill using SBT
-target/bin/mill --all _.publishLocal releaseAssembly
+target/bin/mill --all \
+ scalaworker.publishLocal \
+ scalajslib.jsbridges[0.6].publishLocal \
+ scalajslib.jsbridges[1.0].publishLocal \
+ releaseAssembly
-mv out/releaseAssembly ~/mill
+mv out/releaseAssembly/dest/out.jar ~/mill-release
git clean -xdf
# Second build & run tests using Mill
-~/mill --all {core,scalalib,scalajslib}.test devAssembly
-~/mill integration.test mill.integration.AmmoniteTests
-~/mill integration.test "mill.integration.{AcyclicTests,BetterFilesTests,JawnTests}"
-~/mill 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