Aegisub/.travis/install.sh

24 lines
570 B
Bash
Raw Normal View History

2020-02-10 21:27:07 +01:00
#! /bin/bash
set -e
if [ "$TRAVIS_OS_NAME" = 'linux' ]; then
2020-02-10 21:27:07 +01:00
# Remove the CMake provided by travis
sudo rm -rf /usr/local/cmake*
if [ "$BUILD_SUIT" = 'autotools' ]; then
if [ ! -z "$WITH_COVERALLS" ]; then
sudo pip3 install -U cpp-coveralls
fi
git submodule --quiet init
git submodule --quiet update vendor/googletest
2020-02-10 21:27:07 +01:00
else
pushd /usr/src/googletest
sudo cmake .
sudo make install -j2
popd
2020-02-10 21:27:07 +01:00
fi
fi
sudo luarocks install busted > /dev/null
sudo luarocks install moonscript > /dev/null
sudo luarocks install uuid > /dev/null