summaryrefslogtreecommitdiff
path: root/ci/test_all.sh
blob: 558f76d69ef0d812b4219a10a0d11fdc0675998f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env bash

set -eux

# Starting from scratch...
git clean -xdf

# First build & run tests using SBT
sbt core/test scalalib/test scalajslib/test integration/test bin/test:assembly

# Run tests using Mill built using SBT
target/bin/mill --all {core,scalalib,scalajslib,integration}.test devAssembly

# Second build & run tests using Mill
out/devAssembly/dest --all {core,scalalib,scalajslib,integration}.test devAssembly