mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-23 20:34:06 +00:00
Enable IPv6 support in Dockers to workaround travis-ci/travis-ci#8891.
This commit is contained in:
parent
2352a888a1
commit
8d76e281bf
@ -190,6 +190,13 @@ env:
|
||||
before_install:
|
||||
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
|
||||
- mkdir -p $HOME/rustsrc
|
||||
# FIXME(#46924): these two commands are required to enable IPv6,
|
||||
# they shouldn't exist, please revert once more official solutions appeared.
|
||||
# see https://github.com/travis-ci/travis-ci/issues/8891#issuecomment-353403729
|
||||
- if [ "$TRAVIS_OS_NAME" = linux ]; then
|
||||
echo '{"ipv6":true,"fixed-cidr-v6":"fe80::/64"}' | sudo tee /etc/docker/daemon.json;
|
||||
sudo service docker restart;
|
||||
fi
|
||||
|
||||
install:
|
||||
- case "$TRAVIS_OS_NAME" in
|
||||
|
Loading…
Reference in New Issue
Block a user