2015-07-10 16:41:08 +02:00
|
|
|
language: cpp
|
2020-08-22 05:23:11 +02:00
|
|
|
dist: focal
|
2020-07-23 18:20:25 +02:00
|
|
|
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
|
2020-07-23 18:20:25 +02:00
|
|
|
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
|
2020-08-12 18:54:22 +02:00
|
|
|
env: SUBTARGET=ci MAME=mameci
|
2020-06-27 14:26:52 +02:00
|
|
|
- os: linux
|
|
|
|
arch: s390x
|
|
|
|
compiler: gcc
|
2020-08-12 18:54:22 +02:00
|
|
|
env: SUBTARGET=ci MAME=mameci64
|
2020-08-22 05:23:11 +02:00
|
|
|
- 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:
|
2020-10-21 13:42:17 +02:00
|
|
|
- if [ $CC == 'clang' ]; then
|
2019-10-18 16:30:48 +02:00
|
|
|
make -j2 IGNORE_GIT=1 OVERRIDE_CXX="clang++-3.6" OVERRIDE_CC="clang-3.6" TOOLS=1 && ./$MAME -validate;
|
2020-06-05 18:36:53 +02:00
|
|
|
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
|