Travis: Good riddance

This commit is contained in:
Vicki Pfau 2022-04-12 22:39:04 -07:00
parent 5b7780620d
commit e2f0437037
2 changed files with 0 additions and 41 deletions

View File

@ -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

View File

@ -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)'