Browse Source

chore: install sqlite in travis

reviewable/pr5191/r2
TriKriSta 7 years ago
parent
commit
d1afc7f6df
  1. 9
      .travis/build-ubuntu-14-04.sh

9
.travis/build-ubuntu-14-04.sh

@ -52,6 +52,15 @@ sudo apt-get install -y --force-yes \
# Qt # Qt
source /opt/qt55/bin/qt55-env.sh || yes source /opt/qt55/bin/qt55-env.sh || yes
# sqlite
wget https://sqlite.org/2018/sqlite-autoconf-3240000.tar.gz
tar xvfz sqlite-autoconf-3240000.tar.gz
cd sqlite-autoconf-3240000
./configure
make -j$(nproc)
sudo make install
cd ..
# ffmpeg # ffmpeg
if [ ! -e "libs" ]; then mkdir libs; fi if [ ! -e "libs" ]; then mkdir libs; fi
if [ ! -e "ffmpeg" ]; then mkdir ffmpeg; fi if [ ! -e "ffmpeg" ]; then mkdir ffmpeg; fi

Loading…
Cancel
Save