comparison .travis.yml @ 20003:e373843e2980 v8.2.0557

patch 8.2.0557: no IPv6 support for channels Commit: https://github.com/vim/vim/commit/bfe13ccc58ccb96f243a58309800410db1ccb52c Author: Bram Moolenaar <Bram@vim.org> Date: Sun Apr 12 17:53:12 2020 +0200 patch 8.2.0557: no IPv6 support for channels Problem: No IPv6 support for channels. Solution: Add IPv6 support. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/5893)
author Bram Moolenaar <Bram@vim.org>
date Sun, 12 Apr 2020 18:00:07 +0200
parents a042d2a3b13d
children 4c0c86098fcc
comparison
equal deleted inserted replaced
20002:2bf41f30475c 20003:e373843e2980
60 - | 60 - |
61 if [[ "${CONFOPT}" =~ luainterp ]]; then 61 if [[ "${CONFOPT}" =~ luainterp ]]; then
62 sudo update-alternatives --install /usr/bin/lua lua /usr/bin/lua5.3 10 62 sudo update-alternatives --install /usr/bin/lua lua /usr/bin/lua5.3 10
63 fi 63 fi
64 before_script: 64 before_script:
65 # On travis bionic-amd64 gethostbyname() resolves "localhost" to 127.0.1.1 65 - sudo sysctl -w net.ipv6.conf.lo.disable_ipv6=0
66 # so that makes various channel tests fail.
67 - sudo sed -i '/^127\.0\.1\.1\s/s/\blocalhost\b//g' /etc/hosts
68 - sudo bash ci/load-snd-dummy.sh || true 66 - sudo bash ci/load-snd-dummy.sh || true
69 - sudo usermod -a -G audio $USER 67 - sudo usermod -a -G audio $USER
70 - do_test() { sg audio "sg $(id -gn) '$*'"; } 68 - do_test() { sg audio "sg $(id -gn) '$*'"; }
71 69
72 osx: &osx 70 osx: &osx