On 01/09/2020 10.50, Roman Bolshakov wrote: > jobs keyword is used throughout Travis documentation and matrix is an > alias for it (according to Travis config validation): > > root: key matrix is an alias for jobs, using jobs > > At first glance it's not clear if they're the same and if jobs > documentation applies to matrix. Changing keyword name should make it > obvious. > > While at it, fix the Travis config warning: > > root: deprecated key sudo (The key `sudo` has no effect anymore.) > > Signed-off-by: Roman Bolshakov <r.bolshakov@xxxxxxxxx> > --- > .travis.yml | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/.travis.yml b/.travis.yml > index 7bd0205..f3a8899 100644 > --- a/.travis.yml > +++ b/.travis.yml > @@ -1,11 +1,10 @@ > -sudo: true > dist: bionic > language: c > cache: ccache > git: > submodules: false > > -matrix: > +jobs: > include: > > - addons: > Seems to work. Tested-by: Thomas Huth <thuth@xxxxxxxxxx>