10 lines
132 B
Bash
10 lines
132 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
source $(dirname $0)/env.sh
|
||
|
|
||
|
cd $LUNA_ROOT
|
||
|
|
||
|
make -C tests build
|
||
|
make -C tests install
|
||
|
make -C tests test
|