Delete .travis.sh
parent
ce880331df
commit
a595cdad06
67
.travis.sh
67
.travis.sh
|
@ -1,67 +0,0 @@
|
||||||
#---------------------------------------------------------------------------
|
|
||||||
#Open Asset Import Library (assimp)
|
|
||||||
#---------------------------------------------------------------------------
|
|
||||||
# Copyright (c) 2006-2020, assimp team
|
|
||||||
#
|
|
||||||
# License see LICENSE file
|
|
||||||
#
|
|
||||||
function generate() {
|
|
||||||
OPTIONS="-DASSIMP_WERROR=ON"
|
|
||||||
OPTIONS="$OPTIONS -DASSIMP_NO_EXPORT=NO"
|
|
||||||
|
|
||||||
if [ "$DISABLE_EXPORTERS" = "YES" ] ; then
|
|
||||||
OPTIONS="$OPTIONS -DASSIMP_NO_EXPORT=YES"
|
|
||||||
else
|
|
||||||
OPTIONS="$OPTIONS -DASSIMP_NO_EXPORT=NO"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$SHARED_BUILD" = "ON" ] ; then
|
|
||||||
OPTIONS="$OPTIONS -DBUILD_SHARED_LIBS=ON"
|
|
||||||
else
|
|
||||||
OPTIONS="$OPTIONS -DBUILD_SHARED_LIBS=OFF"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$ENABLE_COVERALLS" = "ON" ] ; then
|
|
||||||
OPTIONS="$OPTIONS -DASSIMP_COVERALLS=ON"
|
|
||||||
else
|
|
||||||
OPTIONS="$OPTIONS -DASSIMP_COVERALLS=OFF"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$ASAN" = "ON" ] ; then
|
|
||||||
OPTIONS="$OPTIONS -DASSIMP_ASAN=ON"
|
|
||||||
else
|
|
||||||
OPTIONS="$OPTIONS -DASSIMP_ASAN=OFF"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$UBSAN" = "ON" ] ; then
|
|
||||||
OPTIONS="$OPTIONS -DASSIMP_UBSAN=ON"
|
|
||||||
fi
|
|
||||||
|
|
||||||
cmake -G "Unix Makefiles" $OPTIONS
|
|
||||||
}
|
|
||||||
# build and run unittests, if not android
|
|
||||||
if [ $ANDROID ]; then
|
|
||||||
ant -v -Dmy.dir=${TRAVIS_BUILD_DIR} -f ${TRAVIS_BUILD_DIR}/port/jassimp/build.xml ndk-jni
|
|
||||||
fi
|
|
||||||
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
|
|
||||||
if [ $ANALYZE = "ON" ] ; then
|
|
||||||
if [ "$CC" = "clang" ]; then
|
|
||||||
scan-build cmake -G "Unix Makefiles" -DBUILD_SHARED_LIBS=OFF -DASSIMP_BUILD_TESTS=OFF
|
|
||||||
scan-build --status-bugs make -j2
|
|
||||||
else
|
|
||||||
cppcheck --version
|
|
||||||
generate \
|
|
||||||
&& cppcheck --error-exitcode=1 -j2 -Iinclude -Icode code 2> cppcheck.txt
|
|
||||||
if [ -s cppcheck.txt ]; then
|
|
||||||
cat cppcheck.txt
|
|
||||||
exit 1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
generate \
|
|
||||||
&& make -j4 \
|
|
||||||
&& sudo make install \
|
|
||||||
&& sudo ldconfig \
|
|
||||||
&& (cd test/unit; ../../bin/unit)
|
|
||||||
fi
|
|
||||||
fi
|
|
Loading…
Reference in New Issue