From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4B427A0556; Thu, 20 Feb 2020 15:35:59 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1F2361BF9C; Thu, 20 Feb 2020 15:35:59 +0100 (CET) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id 4FFF51BF98 for ; Thu, 20 Feb 2020 15:35:58 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1582209357; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=egBbTMrzAn8EVUp6i+2yrR4Vt9uJ8GbkwZ3Ajsix9AU=; b=SUcCWAaT0ANL6xR/P0GeOfs78uc5i700N9itNIN8nz11Q5eVlW8ZcaU6yTWIMARfnfObEm vaUC5Xkx2H+Q2paK6HLyzUNrYpeI9i1sGSsPIZDrFIy/oJrZ7CjCdqVfFfdI12wqT+ta8m E8sp25GtLE3aQqZKvp1RsnCFXbDpKUE= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-469-geE9Q7nXNaeBd8201LSwug-1; Thu, 20 Feb 2020 09:35:56 -0500 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 014DA107ACC5; Thu, 20 Feb 2020 14:35:54 +0000 (UTC) Received: from dhcp-25.97.bos.redhat.com (unknown [10.18.25.126]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D0544790CF; Thu, 20 Feb 2020 14:35:50 +0000 (UTC) From: Aaron Conole To: David Marchand Cc: thomas@monjalon.net, dev@dpdk.org, Michael Santana References: <20200219194131.29417-1-david.marchand@redhat.com> <20200219194131.29417-4-david.marchand@redhat.com> Date: Thu, 20 Feb 2020 09:35:50 -0500 In-Reply-To: <20200219194131.29417-4-david.marchand@redhat.com> (David Marchand's message of "Wed, 19 Feb 2020 20:41:30 +0100") Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-MC-Unique: geE9Q7nXNaeBd8201LSwug-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH 3/4] ci: use an explicit list of Travis jobs X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" David Marchand writes: > 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 > --- Acked-by: Aaron Conole