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.
This commit is contained in:
parent
62d23d66a2
commit
50e883b640
1 changed files with 1 additions and 0 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
sudo: required
|
||||||
language: c
|
language: c
|
||||||
compiler:
|
compiler:
|
||||||
- gcc
|
- gcc
|
||||||
|
|
Loading…
Reference in a new issue