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