mirror of
https://github.com/holub/mame
synced 2025-04-16 05:24:54 +03:00
Enable ppc64le for travis (#7113)
* Added akkaarrh to the ci target. * Switched Travis CI to Ubuntu Focal. * Allow ppc64le CI build to fail. * Report CI status as soon as a job has failed or remaining jobs are allowed to fail.
This commit is contained in:
parent
fad6c07331
commit
a264090e78
@ -1,5 +1,5 @@
|
|||||||
language: cpp
|
language: cpp
|
||||||
dist: bionic
|
dist: focal
|
||||||
addons:
|
addons:
|
||||||
apt:
|
apt:
|
||||||
sources:
|
sources:
|
||||||
@ -37,6 +37,13 @@ jobs:
|
|||||||
arch: s390x
|
arch: s390x
|
||||||
compiler: gcc
|
compiler: gcc
|
||||||
env: SUBTARGET=ci MAME=mameci64
|
env: SUBTARGET=ci MAME=mameci64
|
||||||
|
- os: linux
|
||||||
|
arch: ppc64le
|
||||||
|
compiler: gcc
|
||||||
|
env: SUBTARGET=ci MAME=mameci64
|
||||||
|
allow_failures:
|
||||||
|
- arch: ppc64le
|
||||||
|
fast_finish: true
|
||||||
script:
|
script:
|
||||||
- if [ $TRAVIS_OS_NAME == 'linux' ]; then
|
- if [ $TRAVIS_OS_NAME == 'linux' ]; then
|
||||||
if [ $CC == 'clang' ]; then
|
if [ $CC == 'clang' ]; then
|
||||||
|
@ -50,6 +50,7 @@ SOUNDS["VOTRAX"] = true
|
|||||||
SOUNDS["VOLT_REG"] = true
|
SOUNDS["VOLT_REG"] = true
|
||||||
SOUNDS["DMADAC"] = true
|
SOUNDS["DMADAC"] = true
|
||||||
SOUNDS["CDDA"] = true
|
SOUNDS["CDDA"] = true
|
||||||
|
SOUNDS["POKEY"] = true
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- specify available video cores
|
-- specify available video cores
|
||||||
@ -84,6 +85,7 @@ MACHINES["Z80DAISY"] = true
|
|||||||
MACHINES["NETLIST"] = true
|
MACHINES["NETLIST"] = true
|
||||||
MACHINES["IDECTRL"] = true
|
MACHINES["IDECTRL"] = true
|
||||||
MACHINES["PS2INTC"] = true
|
MACHINES["PS2INTC"] = true
|
||||||
|
MACHINES["ER2055"] = true
|
||||||
|
|
||||||
--------------------------------------------------
|
--------------------------------------------------
|
||||||
-- specify available bus cores
|
-- specify available bus cores
|
||||||
@ -180,6 +182,7 @@ files{
|
|||||||
MAME_DIR .. "src/mame/drivers/kinst.cpp",
|
MAME_DIR .. "src/mame/drivers/kinst.cpp",
|
||||||
MAME_DIR .. "src/mame/audio/dcs.cpp",
|
MAME_DIR .. "src/mame/audio/dcs.cpp",
|
||||||
MAME_DIR .. "src/mame/audio/dcs.h",
|
MAME_DIR .. "src/mame/audio/dcs.h",
|
||||||
|
MAME_DIR .. "src/mame/drivers/akkaarrh.cpp",
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -39,3 +39,5 @@ supertnk // (c) 1981 VIDEO GAMES GmbH, W.-GERMANY
|
|||||||
wrally // (c) 1993 - Ref 930705
|
wrally // (c) 1993 - Ref 930705
|
||||||
|
|
||||||
kinst // (c) 1994 Rare
|
kinst // (c) 1994 Rare
|
||||||
|
|
||||||
|
akkaarrh // (c) 1982 Atari (prototype)
|
||||||
|
Loading…
Reference in New Issue
Block a user