]> Git Repo - qemu.git/commitdiff
travis.yml: Fix Travis YAML configuration warnings
authorWainer dos Santos Moschetta <[email protected]>
Tue, 25 Feb 2020 12:46:57 +0000 (12:46 +0000)
committerAlex Bennée <[email protected]>
Tue, 25 Feb 2020 20:06:57 +0000 (20:06 +0000)
This fixes the following warnings Travis has detected on the
YAML configuration:

- 'on root: missing os, using the default "linux"'
- 'on root: the key matrix is an alias for jobs, using jobs'
- 'on jobs.include.python: unexpected sequence, using the first value (3.5)'
- 'on jobs.include.python: unexpected sequence, using the first value (3.6)'

Signed-off-by: Wainer dos Santos Moschetta <[email protected]>
Signed-off-by: Alex Bennée <[email protected]>
Message-Id: <20200207210124[email protected]>
Message-Id: <20200225124710[email protected]>

.travis.yml

index ea13e071795666ff5bea7fbcfa75e5d2b0aec233..0612998958b76856ed9e6134ab25a680758e478f 100644 (file)
@@ -1,6 +1,7 @@
 # The current Travis default is a VM based 16.04 Xenial on GCE
 # Additional builds with specific requirements for a full VM need to
 # be added as additional matrix: entries later on
+os: linux
 dist: xenial
 language: c
 compiler:
@@ -113,7 +114,7 @@ after_script:
   - if command -v ccache ; then ccache --show-stats ; fi
 
 
-matrix:
+jobs:
   include:
     - name: "GCC static (user)"
       env:
@@ -297,8 +298,7 @@ matrix:
         - CONFIG="--target-list=x86_64-softmmu"
         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
       language: python
-      python:
-        - "3.5"
+      python: 3.5
 
 
     - name: "GCC Python 3.6 (x86_64-softmmu)"
@@ -306,8 +306,7 @@ matrix:
         - CONFIG="--target-list=x86_64-softmmu"
         - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
       language: python
-      python:
-        - "3.6"
+      python: 3.6
 
 
     # Acceptance (Functional) tests
This page took 0.030322 seconds and 4 git commands to generate.