openscad/scripts/travis-ci.sh

21 lines
447 B
Bash
Raw Normal View History

2013-05-14 01:04:54 +04:00
#!/bin/bash
cd tests
cmake .
2013-05-14 03:32:54 +04:00
if [[ $? != 0 ]]; then
echo "Error configuring test suite"
exit 1
fi
make -j2
2013-05-14 03:32:54 +04:00
if [[ $? != 0 ]]; then
echo "Error building test suite"
exit 1
fi
# Exclude tests known the cause issues on Travis
# opencsgtest_rotate_extrude-tests - Fails on Ubuntu 12.04 using Gallium 0.4 drivers
ctest -j8 -E "opencsgtest_rotate_extrude-tests|opencsgtest_render-tests"
2013-05-14 03:32:54 +04:00
if [[ $? != 0 ]]; then
echo "Test failure"
exit 1
fi