Files
OpenUxAS-SoI/ci/travis.sh
2018-03-12 15:58:13 -07:00

13 lines
334 B
Bash

set -ev
if [[ "$BUILD_FLAVOR" == "linux_docker" ]]; then
source ci/travis_docker.sh;
elif [[ "$BUILD_FLAVOR" == "linux_native" ]]; then
source ci/travis_linux.sh;
elif [[ "$BUILD_FLAVOR" == "osx_native" ]]; then
source ci/travis_osx.sh;
else
echo "Error: unexpected Travis build flavor: $BUILD_FLAVOR";
false;
fi