Since TravisCI migrated jobs from containers to VMs, 'sudo' is always available. Setting 'sudo: false' is misleading because it makes no effect.
https://docs.travis-ci.com/user/reference/trusty/#container-based-infrastructure "Container-based infrastructure is currently being deprecated. Please remove any sudo: false keys in your .travis.yml file to use the default fully-virtualized Linux infrastructure instead." Signed-off-by: Ilya Maximets <[email protected]> --- .travis.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index f97e44a22..ef2a37750 100644 --- a/.travis.yml +++ b/.travis.yml @@ -26,8 +26,6 @@ before_install: ./.travis/${TRAVIS_OS_NAME}-prepare.sh before_script: export PATH=$PATH:$HOME/bin -sudo: false - env: - OPTS="--disable-ssl" - TESTSUITE=1 KERNEL=3.16.54 -- 2.17.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
