We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2352a88 commit 8d76e28Copy full SHA for 8d76e28
.travis.yml
@@ -190,6 +190,13 @@ env:
190
before_install:
191
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
192
- mkdir -p $HOME/rustsrc
193
+ # 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