You've already forked OpenUxAS-SoI
mirror of
https://github.com/AdaCore/OpenUxAS-SoI.git
synced 2026-02-12 13:04:49 -08:00
13 lines
334 B
Bash
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
|