all repos — mgba @ f3496042aff3aad933f542cfe6a87444b20736a7

mGBA Game Boy Advance Emulator

Travis: Fix newer Qt moc
Vicki Pfau vi@endrift.com
Mon, 14 Oct 2019 19:53:39 -0700
commit

f3496042aff3aad933f542cfe6a87444b20736a7

parent

7fe88430cf48027405e1af6da5c98459ed8ffc4f

2 files changed, 5 insertions(+), 1 deletions(-)

jump to
M .travis-deps.sh.travis-deps.sh

@@ -1,5 +1,9 @@

#!/bin/sh +set -e if [ $TRAVIS_OS_NAME = "osx" ]; then brew update brew install qt5 ffmpeg imagemagick sdl2 libedit libelf libpng libzip +else + sudo apt-get update + sudo apt-get -y install libseccomp2 fi
M .travis.yml.travis.yml

@@ -24,7 +24,7 @@ env: DOCKER_TAG=

before_install: - '[ -z "$DOCKER_TAG" ] || docker pull mgba/$DOCKER_TAG' -- '[ "$TRAVIS_OS_NAME" != "osx" ] || . ./.travis-deps.sh' +- '. ./.travis-deps.sh' - 'mkdir build && chmod 777 build' script: