forked from assimp/assimp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed: Ensure failing tests fail travis
- Loading branch information
1 parent
2dc332c
commit 8b27163
Showing
2 changed files
with
17 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
function generate() | ||
{ | ||
cmake -G "Unix Makefiles" -DASSIMP_ENABLE_BOOST_WORKAROUND=YES -DASSIMP_NO_EXPORT=$TRAVIS_NO_EXPORT -DBUILD_SHARED_LIBS=$SHARED_BUILD | ||
} | ||
|
||
if [ $ANDROID ]; then | ||
ant -v -Dmy.dir=${TRAVIS_BUILD_DIR} -f ${TRAVIS_BUILD_DIR}/port/jassimp/build.xml ndk-jni | ||
else | ||
generate \ | ||
&& make \ | ||
&& sudo make install \ | ||
&& sudo ldconfig \ | ||
&& (cd test/unit; ../../bin/unit) \ | ||
&& (cd test/regression; chmod 755 run.py; ./run.py) \ | ||
&& (cd test/regression; chmod 755 result_checker.py; ./result_checker.py) | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters