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 88918A0555; Wed, 19 Feb 2020 20:41:55 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 290BB1BF87; Wed, 19 Feb 2020 20:41:51 +0100 (CET) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) by dpdk.org (Postfix) with ESMTP id B2B043B5 for ; Wed, 19 Feb 2020 20:41:47 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1582141307; 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=j1LOBRdjyeDuOZY85NVtTecTbsW0+/GZtHt65pwUFBk=; b=g8aPoo8C4fsDQHy92lFP3sePRaRH5cSC7vEQ47SxKLpLSehPEqFFSqxysGccmb9lLvZP6t sAOgYgFil4U5J5uGvPwEK2PaCm/013P2g9Wn2gNBjCIswtECXSAt7TkB2+xNdWdEKbP3ag gABsUAkatBE9gP2L2fgE29Z9b443hxE= 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-367-KUsPDLYSPVKNzBG_OhTnWw-1; Wed, 19 Feb 2020 14:41:45 -0500 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 1C3E8107ACC9; Wed, 19 Feb 2020 19:41:44 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-34.brq.redhat.com [10.40.204.34]) by smtp.corp.redhat.com (Postfix) with ESMTP id C4D911001B09; Wed, 19 Feb 2020 19:41:42 +0000 (UTC) From: David Marchand To: thomas@monjalon.net, aconole@redhat.com Cc: dev@dpdk.org, Michael Santana Date: Wed, 19 Feb 2020 20:41:28 +0100 Message-Id: <20200219194131.29417-2-david.marchand@redhat.com> In-Reply-To: <20200219194131.29417-1-david.marchand@redhat.com> References: <20200219194131.29417-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 X-MC-Unique: KUsPDLYSPVKNzBG_OhTnWw-1 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Subject: [dpdk-dev] [PATCH 1/4] ci: remove unnecessary dependency on Linux headers 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" Following removal of kmod compilation, we don't need to install linux-headers anymore. Fixes: ea860973592b ("ci: remove redundant configs disabling kmods") Signed-off-by: David Marchand --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 1d43f16ae..671447ee8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -17,7 +17,7 @@ addons: apt: update: true packages: &required_packages - - [libnuma-dev, linux-headers-$(uname -r), python3-setuptools, pytho= n3-wheel, python3-pip, ninja-build] + - [libnuma-dev, python3-setuptools, python3-wheel, python3-pip, ninj= a-build] =20 aarch64_packages: &aarch64_packages - *required_packages --=20 2.23.0