Skip to content

Commit 2ce0892

Browse files
committed
travis.sh: install libbullet-dev for jskeus tests
1 parent 6a25da0 commit 2ce0892

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.travis.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if [ "$TRAVIS_OS_NAME" == "linux" ]; then
2828
travis_time_end
2929

3030
travis_time_start setup.apt-get_install
31-
ret=1; while [ $ret != 0 ]; do sudo apt-get install -qq -y git make gcc g++ libjpeg-dev libxext-dev libx11-dev libgl1-mesa-dev libglu1-mesa-dev libpq-dev libpng-dev xfonts-100dpi xfonts-75dpi && ret=0 || echo "failed, retry"; done # msttcorefonts could not install on 14.04 travis
31+
ret=1; while [ $ret != 0 ]; do sudo apt-get install -qq -y git make gcc g++ libjpeg-dev libxext-dev libx11-dev libgl1-mesa-dev libglu1-mesa-dev libpq-dev libpng-dev xfonts-100dpi xfonts-75dpi libbullet-dev && ret=0 || echo "failed, retry"; done # msttcorefonts could not install on 14.04 travis
3232
if [ "`uname -m`" == "x86_64" ] ; then sudo apt-get install -qq -y texlive-latex-base ptex-bin latex2html nkf poppler-utils || echo "ok"; fi # 16.04 does ont have ptex bin
3333
travis_time_end
3434

@@ -41,6 +41,7 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then
4141
brew list jpeg &>/dev/null || brew install jpeg
4242
brew list libpng &>/dev/null || brew install libpng
4343
brew list mesalib-glw &>/dev/null || brew install mesalib-glw
44+
brew list libbullet-dev &>/dev/null || brew install libbullet-dev
4445
travis_time_end
4546

4647
fi

0 commit comments

Comments
 (0)