Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Remove
sudo: false
from .travis.yml
Since this repository was not recognized by Travis before 2015-01-01, there is no need to include `sudo: false` as that is now the default. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From https://docs.travis-ci.com/user/workers/container-based-infrastructure/#Routing-your-build-to-container-based-infrastructure: " The default behavior, when no sudo usage is detected in any customizable build phases, depends on the date when the repository is first recognized by Travis CI: * For repos we recognize before 2015-01-01, linux builds are sent to our standard infrastructure. * For repos we recognize on or after 2015-01-01, linux builds are sent to our container-based infrastructure "
- Loading branch information
bc3dd58
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can understand that
sudo: false
did nothing because it is the default, but I don't see why removing the line is helpful. At least it made explicit in what environment Travis-CI would run the build.The commit message does not say why the line had to be removed.
bc3dd58
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dolmen👏