diff options
author | 2020-08-22 05:23:11 +0200 | |
---|---|---|
committer | 2020-08-22 13:23:11 +1000 | |
commit | a264090e789bfdaa44b6c002c1f3393e919b5ea6 (patch) | |
tree | fba85aa2b9133cfcc37184aa8ee659e0129654f3 /.travis.yml | |
parent | fad6c0733128b7b48b7f7f594aee7aad18a7f317 (diff) |
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.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index c948f4a6c0f..e195a1df821 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,5 @@ language: cpp -dist: bionic +dist: focal addons: apt: sources: @@ -37,6 +37,13 @@ jobs: 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 script: - if [ $TRAVIS_OS_NAME == 'linux' ]; then if [ $CC == 'clang' ]; then |