summaryrefslogtreecommitdiff
path: root/ci/test4.sh
diff options
context:
space:
mode:
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