17 lines
468 B
Bash
17 lines
468 B
Bash
#!/bin/bash
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
|
|
|
|
# install apt repos necessary for Olive
|
|
sudo add-apt-repository ppa:beineri/opt-qt593-trusty -y
|
|
sudo add-apt-repository ppa:jonathonf/ffmpeg-3 -y
|
|
sudo add-apt-repository ppa:jonathonf/ffmpeg-4 -y
|
|
sudo apt-get update -qq
|
|
|
|
elif [[ "$TRAVIS_OS_NAME" == "windows" ]]; then
|
|
|
|
# install msys2 for mingw package installation
|
|
# (chocolatey is seemingly missing a recent version of Qt)
|
|
choco install msys2 -y
|
|
|
|
fi |