gearman / gearmand

http://gearman.org/
Other
741 stars 138 forks source link

.travis.yml: Removed deprecated sudo tag and changed the matrix tag to jobs #276

Closed esabol closed 4 years ago

esabol commented 4 years ago

I noticed that under "View config" on Travis CI, it says:

root: deprecated key sudo (The key `sudo` has no effect anymore.)

I googled that and found this blog entry:

All the Python repos subsequently removed sudo: required from their .travis.yml files. For example: https://github.com/python/mypy/issues/6675

We might as well do the same!

esabol commented 4 years ago

By the way, it also says:

root: key matrix is an alias for jobs, using jobs

Might as well change matrix: to jobs: in .travis.yml then?

Update: I made that change as well.