diff options
author | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-11-23 14:04:24 +0000 |
---|---|---|
committer | k0kubun <k0kubun@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2017-11-23 14:04:24 +0000 |
commit | dd979f9d6959919765e20f369ac3fe3ae95958ac (patch) | |
tree | 1a3781d4b7a7e078248b20534d990bb363f3898d | |
parent | 4a738901891517f41283e5146e98a1ca95bd7c1e (diff) |
.travis.yml: revert "workaround to resolve ::1"
This commit reverts r60736.
Shibata-san reported the cause of r60736 to Travis and it seems fixed:
https://github.com/travis-ci/travis-ci/issues/8780
In another CI, I found "::1 ip6-localhost ip6-loopback" in build
system information, unlike "::1 localhost ip6-localhost ip6-loopback"
that had failed in Ruby's CI on Travis.
Let's try Container-based environment again.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60886 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 9255e02c7b..4c7a2e9667 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ language: c dist: trusty -sudo: required +sudo: false compiler: - gcc |