File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
language : shell
2
2
sudo : required
3
3
dist : trusty
4
- group : deprecated-2017Q4
5
4
services :
6
5
- docker
7
6
@@ -191,6 +190,13 @@ env:
191
190
before_install :
192
191
- zcat $HOME/docker/rust-ci.tar.gz | docker load || true
193
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
194
200
195
201
install :
196
202
- case "$TRAVIS_OS_NAME" in
You can’t perform that action at this time.
0 commit comments