dfmt/.travis.sh

16 lines
264 B
Bash
Executable File

#!/bin/bash
set -e
if [[ $BUILD == dub ]]; then
dub build --build=release
elif [[ $DC == ldc2 ]]; then
git submodule update --init --recursive
make ldc -j2
else
git submodule update --init --recursive
make debug -j2
fi
cd tests && ./test.sh