From 8c740c13df8cf62757becc52564847e358e89a38 Mon Sep 17 00:00:00 2001 From: Karol Babioch Date: Fri, 6 Apr 2018 13:24:17 +0200 Subject: [PATCH] Require sudo in .travis.yml Since the install script currently requires sudo, we should state so explicetely in the .travis.yml file to make sure we get a sudo-enabled environment and not a container-based one, as there is no sudo available in the latter one. The default was changed in August 2017, so when forking this repository, the Travis CI won't work out-of-the box without this modification. This is described in some details here [1]. [1]: https://docs.travis-ci.com/user/reference/overview/ --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 8deedd9f..9b5e3b4f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +sudo: required language: c os: - linux