.travis-deps.sh 255 B

123456789101112
  1. #!/bin/sh
  2. set -e
  3. set -x
  4. #if OS is linux or is not set
  5. if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then
  6. docker pull ubuntu:16.04
  7. elif [ "$TRAVIS_OS_NAME" = "osx" ]; then
  8. brew update
  9. brew install qt5 sdl2 dylibbundler p7zip
  10. fi