The .travis.yml contains this code:
before_install:
- cat /etc/hosts # optionally check the content before
- sudo hostname "$(hostname | cut -c1-63)"
- sed -e "s/^(127.0.0.1.*)/\1 $(hostname | cut -c1-63)/" /etc/hosts | sudo tee /etc/hosts
- cat /etc/hosts # optionally check the content after
I guess this might be attempting to fix the problem I see, but it doesn't.
The .travis.yml contains this code:
Buffer overflow patch. Source: travis-ci/travis-ci#5227 (comment)
before_install:
I guess this might be attempting to fix the problem I see, but it doesn't.