mirror of https://github.com/mgba-emu/mgba.git
Travis: Fix newer Qt moc
This commit is contained in:
parent
7fe88430cf
commit
f3496042af
|
@ -1,5 +1,9 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
set -e
|
||||||
if [ $TRAVIS_OS_NAME = "osx" ]; then
|
if [ $TRAVIS_OS_NAME = "osx" ]; then
|
||||||
brew update
|
brew update
|
||||||
brew install qt5 ffmpeg imagemagick sdl2 libedit libelf libpng libzip
|
brew install qt5 ffmpeg imagemagick sdl2 libedit libelf libpng libzip
|
||||||
|
else
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get -y install libseccomp2
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -24,7 +24,7 @@ matrix:
|
||||||
|
|
||||||
before_install:
|
before_install:
|
||||||
- '[ -z "$DOCKER_TAG" ] || docker pull mgba/$DOCKER_TAG'
|
- '[ -z "$DOCKER_TAG" ] || docker pull mgba/$DOCKER_TAG'
|
||||||
- '[ "$TRAVIS_OS_NAME" != "osx" ] || . ./.travis-deps.sh'
|
- '. ./.travis-deps.sh'
|
||||||
- 'mkdir build && chmod 777 build'
|
- 'mkdir build && chmod 777 build'
|
||||||
|
|
||||||
script:
|
script:
|
||||||
|
|
Loading…
Reference in New Issue