summaryrefslogtreecommitdiff
path: root/ci/test_all.sh
blob: a04f7119cc2e53726a02dc0cad9a367e6351b19a (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/out.jar all {core,scalalib,scalajslib,integration}.test devAssembly