1
0
Fork 0
VideoPlayer/.travis.yml

37 lines
1 KiB
YAML
Raw Normal View History

2018-10-23 15:54:42 +01:00
2018-10-23 15:42:44 +01:00
matrix:
include:
- env: PLATFORM='linux64'
os: linux
dist: xenial
compiler: clang
language: cpp
2018-10-23 15:54:42 +01:00
sudo: require
2018-10-23 15:42:44 +01:00
cache:
ccache: true
directories:
- $HOME/.ccache
- $HOME/.cache/apt
2018-10-23 15:54:42 +01:00
before_install:
- mkdir -p $HOME/.cache/apt/partial
- sudo rm -rf /var/cache/apt/archives
- sudo ln -s $HOME/.cache/apt /var/cache/apt/archives
- sudo add-apt-repository ppa:beineri/opt-qt-5.11.1-xenial -y
- sudo apt-get update
install:
- sudo apt-get -y install libjack0 libjack-dev nasm ccache qt511-meta-minimal qt511quickcontrols qt511quickcontrols2 qt511imageformats qt511svg libgl1-mesa-dev checkinstall
- sudo apt-get build-dep libmpv1
- source /opt/qt*/bin/qt*-env.sh
script:
- bash scripts/build-mpv.sh
- bash scripts/makeappimage.sh
2018-10-13 15:38:31 +01:00
2018-10-23 15:54:42 +01:00
after_success:
- bash scripts/upload.sh
2018-10-13 15:38:31 +01:00
branches:
except:
- # Do not build tags that we create when we upload to GitHub Releases
- /^(?i:continuous)/