corda/test/ci.sh
Joel Dice 96a4b6e508 test non-debug build first in ci.sh
If something's broken, the script will fail faster if we test the
faster build first, giving us quicker feedback.
2013-03-15 13:17:53 -06:00

13 lines
240 B
Bash
Executable File

#!/bin/sh
set -e
make test
make mode=debug test
make process=interpret test
# bootimage and openjdk builds without openjdk-src don't work:
if [ -z "${openjdk}" ]; then
make bootimage=true test
fi
make tails=true continuations=true test