skip bootimage test in ci.sh if openjdk is set

This commit is contained in:
Joel Dice 2013-02-27 13:47:43 -07:00
parent 5e2d00010b
commit 27d7c8a3c0

View File

@ -5,5 +5,8 @@ set -e
make mode=debug test
make test
make process=interpret test
make bootimage=true 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