This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2014-05-19 03:28:50 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
set -e
|
2014-12-16 00:00:37 +00:00
|
|
|
set -x
|
2014-05-19 03:28:50 +00:00
|
|
|
|
|
|
|
#if OS is linux or is not set
|
2015-03-06 23:54:09 +00:00
|
|
|
if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
|
2017-08-04 10:11:47 +00:00
|
|
|
docker pull ubuntu:16.04
|
2015-03-06 23:54:09 +00:00
|
|
|
elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
|
2016-09-21 04:25:15 +00:00
|
|
|
brew update
|
2017-07-27 04:29:33 +00:00
|
|
|
brew install qt5 sdl2 dylibbundler p7zip
|
2014-05-19 03:28:50 +00:00
|
|
|
fi
|