1
0
Fork 0

[Travis] Optimize build.

This commit is contained in:
Kitteh 2018-11-06 10:25:26 +00:00
parent 64c2e10e77
commit c107b61a7f
2 changed files with 2 additions and 47 deletions

View file

@ -22,7 +22,8 @@ install:
- source /opt/qt*/bin/qt*-env.sh - source /opt/qt*/bin/qt*-env.sh
script: script:
- USE_PREBUILT_MPV=1 ./scripts/build-deps.sh - wget https://github.com/NamedKitten/mpv-builder/releases/download/continuous/deps.tar.xz
- sudo tar xvf deps.tar.xz -C /
- time bash scripts/makeappimage.sh - time bash scripts/makeappimage.sh
after_success: after_success:

View file

@ -1,46 +0,0 @@
#!/bin/bash
set -x
export OLDDIR=`pwd`
export PATH="/usr/lib/ccache:/usr/lib/ccache/bin:$PATH"
export CFLAGS="-Os -pipe"
mkdir -p ~/.cache/deps
if [[ "${USE_PREBUILT_MPV}" ]]; then
wget https://github.com/NamedKitten/mpv-builder/releases/download/continuous/deps.tar.xz
sudo tar xvf deps.tar.xz -C /
exit 0
fi
#rm -rf mpv-build
git clone --depth 1 https://github.com/mpv-player/mpv-build mpv-build
cd mpv-build
export MPVDIR=`pwd`
rm -rf ffmpeg mpv libass
echo "--disable-programs --disable-runtime-cpudetect --disable-asm --disable-sdl --enable-small" > ffmpeg_options
echo "--enable-libmpv-shared --prefix=/usr --disable-vapoursynth --enable-lgpl" > mpv_options
echo "--disable-cplayer --disable-caca --disable-wayland --disable-gl-wayland --disable-libarchive --disable-zlib --disable-tv --disable-debug-build --disable-manpage-build --disable-libsmbclient --disable-wayland --disable-sdl --disable-sndio --enable-plain-gl" >> mpv_options
./use-mpv-release
./use-ffmpeg-release
./use-libass-custom 0.14.0
./rebuild -j`nproc`
sudo ./install
ccache -s
if [[ "${UPLOAD}" ]]; then
cd mpv
python waf -v install --destdir=~/.cache/deps
cd ~/.cache/deps
tar caf deps.tar.xz *
wget https://github.com/probonopd/uploadtool/raw/master/upload.sh
bash upload.sh deps.tar.xz
cd $MPVDIR
fi
cd $OLDDIR