diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-08-19 19:46:12 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-08-19 19:46:12 +0200 |
commit | a7c4e747639ad7642cd50ed577ff4c93db200df4 (patch) | |
tree | 085a5afe56c73e625d39b1e7d0da36680a95401c /.travis.yml | |
parent | f8abbf37d66c41d980284e28e0e38a399890e918 (diff) | |
download | vim-git-a7c4e747639ad7642cd50ed577ff4c93db200df4.tar.gz |
patch 8.2.1487: Travis: installing snd-dummy is not always usefulv8.2.1487
Problem: Travis: installing snd-dummy is not always useful.
Solution: Only install snd-dummy on amd64. (Ozaki Kiichi, closes #6738)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml index a8acd3ade..7f72e064e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,7 +69,11 @@ _anchors: fi before_script: - sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0 - - sudo bash ci/load-snd-dummy.sh || true + # It appears we can load "snd-dummy" on only amd64. + - | + if [[ "${TRAVIS_CPU_ARCH}" = amd64 ]]; then + sudo bash ci/load-snd-dummy.sh || true + fi - sudo usermod -a -G audio $USER - do_test() { sg audio "sg $(id -gn) '$*'"; } @@ -208,13 +212,13 @@ jobs: env: - *normal - *shadowopt - # Temporarily disabled, always fails - #- <<: *linux - # arch: s390x - # name: huge/gcc-s390x - # compiler: gcc - # env: *linux-huge - # services: [] + # Temporarily disabled, always fails + #- <<: *linux + # arch: s390x + # name: huge/gcc-s390x + # compiler: gcc + # env: *linux-huge + # services: [] - <<: *linux arch: arm64 name: huge/gcc-arm64 |