commit: d67ae6ccc650f378b43582e8d43ad276cf5b3dc7 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org> AuthorDate: Sun May 17 08:25:15 2020 +0000 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org> CommitDate: Sun May 17 08:27:10 2020 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=d67ae6cc
travis: address build config validation issues root: deprecated key sudo (The key `sudo` has no effect anymore.) root: missing dist, using the default xenial root: missing os, using the default linux root: key matrix is an alias for jobs, using jobs Signed-off-by: Fabian Groffen <grobian <AT> gentoo.org> .travis.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index b32c12f..f0c180c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,26 +2,20 @@ # https://docs.travis-ci.com/ language: c -sudo: false +dist: bionic +os: linux -matrix: +jobs: include: - compiler: gcc - os: linux - dist: bionic - compiler: clang - os: linux - dist: bionic - compiler: coverity - os: linux - dist: bionic env: - COVERITY_SCAN_PROJECT_NAME="$TRAVIS_REPO_SLUG" - COVERITY_SCAN_BRANCH_PATTERN="master" - COVERITY_SCAN_NOTIFICATION_EMAIL="[email protected]" - COVERITY_SCAN_BUILD_COMMAND="make" - compiler: valgrind - os: linux dist: xenial env: - CFLAGS="-g"
