We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a6fc844 + 8d76e28 commit 0cd6758Copy full SHA for 0cd6758
.travis.yml
@@ -1,7 +1,6 @@
1
language: shell
2
sudo: required
3
dist: trusty
4
-group: deprecated-2017Q4
5
services:
6
- docker
7
@@ -191,6 +190,13 @@ env:
191
190
before_install:
192
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
193
- mkdir -p $HOME/rustsrc
+ # FIXME(#46924): these two commands are required to enable IPv6,
194
+ # they shouldn't exist, please revert once more official solutions appeared.
195
+ # see https://github.com/travis-ci/travis-ci/issues/8891#issuecomment-353403729
196
+ - if [ "$TRAVIS_OS_NAME" = linux ]; then
197
+ echo '{"ipv6":true,"fixed-cidr-v6":"fe80::/64"}' | sudo tee /etc/docker/daemon.json;
198
+ sudo service docker restart;
199
+ fi
200
201
install:
202
- case "$TRAVIS_OS_NAME" in
0 commit comments