mame/.travis.yml

45 lines
969 B
YAML
Raw Normal View History

2015-07-10 16:41:08 +02:00
language: cpp
dist: focal
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-10
- g++-10
- libsdl2-dev
- libsdl2-ttf-dev
- libasound2-dev
- libxinerama-dev
- libxi-dev
2022-11-15 16:27:22 +01:00
- qtbase5-dev
- qtbase5-dev-tools
update: true
2020-06-27 14:26:52 +02:00
jobs:
include:
2015-12-11 06:13:37 +01:00
- os: linux
2020-06-27 14:26:52 +02:00
arch: arm64
compiler: gcc
env: SUBTARGET=ci MAME=mameci
2020-06-27 14:26:52 +02:00
- os: linux
arch: s390x
compiler: gcc
env: SUBTARGET=ci MAME=mameci64
- os: linux
arch: ppc64le
compiler: gcc
env: SUBTARGET=ci MAME=mameci64
allow_failures:
- arch: ppc64le
fast_finish: true
2015-07-10 18:41:35 +02:00
script:
- if [ $CC == 'clang' ]; then
make -j2 IGNORE_GIT=1 OVERRIDE_CXX="clang++-3.6" OVERRIDE_CC="clang-3.6" TOOLS=1 && ./$MAME -validate;
else make -j4 IGNORE_GIT=1 OPTIMIZE=0 OVERRIDE_CC="gcc-10" OVERRIDE_CXX="g++-10" TOOLS=1 && ./$MAME -validate;
2015-07-10 18:41:35 +02:00
fi
2015-09-17 13:32:59 +02:00
branches:
only:
- master
2016-05-27 21:00:24 +02:00
notifications:
email: false