1
0
Fork 0
VideoPlayer/.travis.yml

35 lines
863 B
YAML
Raw Normal View History

2018-10-13 15:38:31 +01:00
language: cpp
compiler: gcc
sudo: require
2018-10-14 18:16:51 +01:00
dist: xenial
2018-10-14 14:58:08 +01:00
cache:
ccache: true
directories:
- $HOME/.ccache
2018-10-16 08:13:01 +01:00
- $HOME/.cache/apt
2018-10-16 08:33:17 +01:00
#- $HOME/.cache/mpv-build
2018-10-13 15:38:31 +01:00
before_install:
2018-10-16 08:13:01 +01:00
- mkdir -p $HOME/.cache/apt/partial
- sudo rm -rf /var/cache/apt/archives
- sudo ln -s $HOME/.cache/apt /var/cache/apt/archives
2018-10-14 18:16:51 +01:00
- sudo add-apt-repository ppa:beineri/opt-qt-5.11.1-xenial -y
2018-10-13 15:43:23 +01:00
- sudo apt-get update
2018-10-13 15:38:31 +01:00
install:
2018-10-18 08:19:38 +01:00
- sudo apt-get -y install libjack0 libjack-dev nasm ccache qt511-meta-minimal qt511quickcontrols qt511quickcontrols2 qt511imageformats qt511svg libgl1-mesa-dev checkinstall
2018-10-14 21:08:30 +01:00
- sudo apt-get build-dep libmpv1
2018-10-13 15:38:31 +01:00
- source /opt/qt*/bin/qt*-env.sh
script:
2018-10-14 20:49:13 +01:00
- bash scripts/makeappimage.sh
2018-10-13 15:38:31 +01:00
after_success:
2018-10-18 08:15:04 +01:00
- 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)/