50e883b640
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.
6 lines
120 B
YAML
6 lines
120 B
YAML
sudo: required
|
|
language: c
|
|
compiler:
|
|
- gcc
|
|
script: tests/script/runtests.sh
|
|
before_install: tests/script/bootstrap.sh
|