diff options
| author | Pieter du Preez <wingunder@users.noreply.github.com> | 2018-10-03 14:36:49 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-03 14:36:49 +0200 |
| commit | 50e883b6404a28c47a9e401c3fa6cf03a82986f3 (patch) | |
| tree | 90a21ce0074a3776e34b77ac16da9d2d6173ea4f | |
| parent | 62d23d66a2f9326235022bfd8711c62e015c0bc8 (diff) | |
Fix "does not allow use of 'sudo'" error in travis
Pull requests seem to fail with the following error:
> This job is running on container-based infrastructure, which does not allow use of 'sudo', setuid, and setgid executables.
> If you require sudo, add 'sudo: required' to your .travis.yml
This commit fixes it, by adding 'sudo: required' to .travis.yml, as suggested by the error message.
| -rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index f97a4ea..630965a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,3 +1,4 @@ +sudo: required language: c compiler: - gcc |
