diff --git a/.travis-deps.sh b/.travis-deps.sh deleted file mode 100755 index 7a93e2dfd..000000000 --- a/.travis-deps.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -if [ $TRAVIS_OS_NAME = "osx" ]; then - brew update - brew install qt5 ffmpeg sdl2 libelf libpng libzip -else - sudo apt-get update - sudo apt-get -y install libseccomp2 -fi diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 90f156618..000000000 --- a/.travis.yml +++ /dev/null @@ -1,33 +0,0 @@ -if: type = pull_request OR NOT branch =~ /^(master$|optimization)/ OR fork -language: c -sudo: required -services: -- docker -os: linux -env: -- DOCKER_TAG=ubuntu:xenial -- DOCKER_TAG=ubuntu:bionic -- DOCKER_TAG=ubuntu:disco -- DOCKER_TAG=ubuntu:eoan -- DOCKER_TAG=3ds -- DOCKER_TAG=wii -- DOCKER_TAG=vita -- DOCKER_TAG=switch -- DOCKER_TAG=windows:w32 -- DOCKER_TAG=windows:w64 - -jobs: - include: - - os: osx - osx_image: xcode12.2 - compiler: clang - env: DOCKER_TAG= - -before_install: -- '[ -z "$DOCKER_TAG" ] || docker pull mgba/$DOCKER_TAG' -- '. ./.travis-deps.sh' -- 'mkdir build && chmod 777 build' - -script: -- '[ -z "$DOCKER_TAG" ] || docker run -e BUILD_DIR=build -e MAKEFLAGS=-j2 -v $PWD:/home/mgba/src mgba/$DOCKER_TAG' -- '[ "$TRAVIS_OS_NAME" != "osx" ] || (cd build && cmake -DCMAKE_PREFIX_PATH="/usr/local/opt/qt5" .. && make -j2)'