From: David Marchand <david.marchand@redhat.com>
To: thomas@monjalon.net, aconole@redhat.com
Cc: dev@dpdk.org, Michael Santana <maicolgabriel@hotmail.com>
Subject: [dpdk-dev] [PATCH 3/4] ci: use an explicit list of Travis jobs
Date: Wed, 19 Feb 2020 20:41:30 +0100 [thread overview]
Message-ID: <20200219194131.29417-4-david.marchand@redhat.com> (raw)
In-Reply-To: <20200219194131.29417-1-david.marchand@redhat.com>
Maintaining the .travis.yml requires some knowledge of how Travis
computes the jobs list (combination of os: arch: compiler: etc...).
Let's switch to an explicit list to find all jobs at a glance.
To enhance readability, jobs have been sorted per arch/compiler with
comments to isolate blocks.
Setting required_packages for aarch64 native jobs is unnecessary,
the global addons: values are the same.
This commit does not change the jobs list (21 jobs in total).
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
.travis.yml | 102 ++++++++++++++++++++++++++--------------------------
1 file changed, 52 insertions(+), 50 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 7c1b2ff1b..c174d5f30 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,17 +1,14 @@
+# default values for all jobs
language: c
cache:
ccache: true
directories:
- libabigail
- reference
-compiler:
- - gcc
- - clang
dist: bionic
-os:
- - linux
+os: linux
addons:
apt:
@@ -38,98 +35,105 @@ _doc_packages: &doc_packages
- [doxygen, graphviz, python3-sphinx]
before_install: ./.ci/${TRAVIS_OS_NAME}-setup.sh
-
-env:
- - DEF_LIB="static"
- - DEF_LIB="shared"
- - DEF_LIB="shared" RUN_TESTS=1
+script: ./.ci/${TRAVIS_OS_NAME}-build.sh
jobs:
include:
- - env: DEF_LIB="static" BUILD_32BIT=1
+ # x86_64 gcc jobs
+ - env: DEF_LIB="static"
+ arch: amd64
compiler: gcc
- addons:
- apt:
- packages:
- - *build_32b_packages
- - env: DEF_LIB="static" AARCH64=1
+ - env: DEF_LIB="shared"
+ arch: amd64
compiler: gcc
- addons:
- apt:
- packages:
- - *aarch64_packages
- - env: DEF_LIB="shared" AARCH64=1
+ - env: DEF_LIB="shared" RUN_TESTS=1
+ arch: amd64
compiler: gcc
- addons:
- apt:
- packages:
- - *aarch64_packages
- env: DEF_LIB="static" EXTRA_PACKAGES=1
+ arch: amd64
compiler: gcc
addons:
apt:
packages:
- *extra_packages
- env: DEF_LIB="shared" EXTRA_PACKAGES=1 RUN_TESTS=1 BUILD_DOCS=1
+ arch: amd64
compiler: gcc
addons:
apt:
packages:
- *extra_packages
- *doc_packages
- - env: DEF_LIB="static" EXTRA_PACKAGES=1
+ - env: DEF_LIB="shared" EXTRA_PACKAGES=1 ABI_CHECKS=1
+ arch: amd64
compiler: gcc
addons:
apt:
packages:
- *extra_packages
+ - *libabigail_build_packages
+ # x86_64 clang jobs
+ - env: DEF_LIB="static"
+ arch: amd64
+ compiler: clang
+ - env: DEF_LIB="shared"
+ arch: amd64
+ compiler: clang
+ - env: DEF_LIB="shared" RUN_TESTS=1
+ arch: amd64
+ compiler: clang
- env: DEF_LIB="static" EXTRA_PACKAGES=1
+ arch: amd64
compiler: clang
addons:
apt:
packages:
- *extra_packages
- env: DEF_LIB="shared" EXTRA_PACKAGES=1
+ arch: amd64
compiler: clang
addons:
apt:
packages:
- *extra_packages
- env: DEF_LIB="shared" EXTRA_PACKAGES=1 RUN_TESTS=1 BUILD_DOCS=1
+ arch: amd64
compiler: clang
addons:
apt:
packages:
- *extra_packages
- *doc_packages
- - env: DEF_LIB="static"
- arch: arm64
+ # x86_64 cross-compiling 32-bits jobs
+ - env: DEF_LIB="static" BUILD_32BIT=1
+ arch: amd64
compiler: gcc
addons:
apt:
packages:
- - *required_packages
- - env: DEF_LIB="shared"
- arch: arm64
+ - *build_32b_packages
+ # x86_64 cross-compiling aarch64 jobs
+ - env: DEF_LIB="static" AARCH64=1
+ arch: amd64
compiler: gcc
addons:
apt:
packages:
- - *required_packages
- - env: DEF_LIB="static"
- arch: arm64
- compiler: clang
+ - *aarch64_packages
+ - env: DEF_LIB="shared" AARCH64=1
+ arch: amd64
+ compiler: gcc
addons:
apt:
packages:
- - *required_packages
+ - *aarch64_packages
+ # aarch64 gcc jobs
+ - env: DEF_LIB="static"
+ arch: arm64
+ compiler: gcc
- env: DEF_LIB="shared"
arch: arm64
- compiler: clang
- addons:
- apt:
- packages:
- - *required_packages
+ compiler: gcc
- env: DEF_LIB="shared" BUILD_DOCS=1
arch: arm64
compiler: gcc
@@ -138,13 +142,6 @@ jobs:
packages:
- *required_packages
- *doc_packages
- - env: DEF_LIB="shared" EXTRA_PACKAGES=1 ABI_CHECKS=1
- compiler: gcc
- addons:
- apt:
- packages:
- - *extra_packages
- - *libabigail_build_packages
- env: DEF_LIB="shared" EXTRA_PACKAGES=1 ABI_CHECKS=1
arch: arm64
compiler: gcc
@@ -153,5 +150,10 @@ jobs:
packages:
- *extra_packages
- *libabigail_build_packages
-
-script: ./.ci/${TRAVIS_OS_NAME}-build.sh
+ # aarch64 clang jobs
+ - env: DEF_LIB="static"
+ arch: arm64
+ compiler: clang
+ - env: DEF_LIB="shared"
+ arch: arm64
+ compiler: clang
--
2.23.0
next prev parent reply other threads:[~2020-02-19 19:42 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-19 19:41 [dpdk-dev] [PATCH 0/4] Reorganise " David Marchand
2020-02-19 19:41 ` [dpdk-dev] [PATCH 1/4] ci: remove unnecessary dependency on Linux headers David Marchand
2020-02-20 10:44 ` Thomas Monjalon
2020-02-20 14:37 ` Aaron Conole
2020-02-19 19:41 ` [dpdk-dev] [PATCH 2/4] ci: fix Travis config warnings David Marchand
2020-02-20 11:03 ` Thomas Monjalon
2020-02-20 12:09 ` David Marchand
2020-02-20 16:46 ` David Marchand
2020-02-20 21:01 ` Aaron Conole
2020-02-21 10:17 ` Thomas Monjalon
2020-02-20 14:36 ` Aaron Conole
2020-02-19 19:41 ` David Marchand [this message]
2020-02-20 11:05 ` [dpdk-dev] [PATCH 3/4] ci: use an explicit list of Travis jobs Thomas Monjalon
2020-02-20 14:35 ` Aaron Conole
2020-02-19 19:41 ` [dpdk-dev] [PATCH 4/4] ci: reorganise " David Marchand
2020-02-19 21:39 ` Aaron Conole
2020-02-20 10:42 ` Thomas Monjalon
2020-02-20 12:22 ` David Marchand
2020-02-20 14:35 ` Aaron Conole
2020-02-20 16:01 ` David Marchand
2020-02-20 19:38 ` [dpdk-dev] [dpdk-ci] " Jeremy Plsek
2020-02-20 0:18 ` [dpdk-dev] " dwilder
2020-02-20 11:07 ` Thomas Monjalon
2020-02-20 21:05 ` [dpdk-dev] [PATCH 0/4] Reorganise " David Marchand
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20200219194131.29417-4-david.marchand@redhat.com \
--to=david.marchand@redhat.com \
--cc=aconole@redhat.com \
--cc=dev@dpdk.org \
--cc=maicolgabriel@hotmail.com \
--cc=thomas@monjalon.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).