Use Brewfile in Travis

This commit is contained in:
Florian Märkl 2018-04-17 18:37:08 +02:00
parent 600f67d9d2
commit d5bd3aa2cf
2 changed files with 7 additions and 1 deletions

View File

@ -29,7 +29,7 @@ before_install:
; fi
install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install p7zip ccache qt5 openssl xz ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew bundle --file=scripts/Brewfile ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export PATH="/usr/local/opt/qt/bin:$PATH" ; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then source scripts/prepare_python_macos.sh ; fi
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then

6
scripts/Brewfile Normal file
View File

@ -0,0 +1,6 @@
brew "p7zip"
brew "ccache"
brew "qt5"
brew "openssl"
brew "xz"
brew "wget"