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 51B75A04F3; Fri, 20 Dec 2019 14:57:34 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id AA9562C52; Fri, 20 Dec 2019 14:57:33 +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 D44EC2C19 for ; Fri, 20 Dec 2019 14:57:32 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1576850251; 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=mJ5SJqyFRuQtNE5zOtzpLza7u/kHpsc4JDXveAdOOfQ=; b=Fj4T0vlF6BZpbXMs+GUG0GaqKdOjj6M4V4gnClZHhQHQ6+54cJT+pwsxa575J7coVw8aOm 2kmcrQXqvW9q0jI/taI67l0M4NvdugQurwF4zdZALTT1tB3IM1KCrX8DxYbH3rfP0aWNHI DUk9emN2z+P2EyN6mqx0jcFwwArorxs= Received: from mail-vk1-f197.google.com (mail-vk1-f197.google.com [209.85.221.197]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-323-IFyJdM98OOO1oL9KLft61g-1; Fri, 20 Dec 2019 08:57:28 -0500 Received: by mail-vk1-f197.google.com with SMTP id n9so3974836vkc.14 for ; Fri, 20 Dec 2019 05:57:28 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=acTcI9LZTVFlj4GWrks5tsDwkynG5xbyQ2U/iybaxd0=; b=VO5Sxcka1tjzfzinnoBbOVFtwAE8lL+ph1aVVNDwT4vRTYLiyubdRYoenfeQRf8HdP Ok1EqU0xDM88tX34PYe5k+fGw7EQKdna+mC0G1qZaRgj8KVnlMhTD9+pyRPlQBJvtOPK 5hYgngeik4JHORgjWQ+OKJQ3t28hvXs4+Z/lq36w8DYpWuK4euqr+9/07YiM/XKh8vzj W6oeUb5OnLLBBb6Pi+zIGbM0Vr2yGN7idSTRcVfaUmSxqvsf4r3xmCs8ffA+6A2nEH/+ 8eFdX+l5tFrRfmvuQOE/MpxaynTnBHyHM9zM1lL/ESfwG3EjxuuC7bU3wM/tnf/nJLaL 9IwQ== X-Gm-Message-State: APjAAAWJgaOlHIdOXER1PqJJNDEr4o9+eckkU4WjxCPRTTjXRTzTeD1E phMom2qCiThtH+YEMCuI17H+DXEkgXNjI5nJ9SCnKhmtjjplDou9PA9Ly0foUmJlclzU+s+fsYk wOEb7e1VE75feWaQoqTw= X-Received: by 2002:ab0:3489:: with SMTP id c9mr9516347uar.53.1576850247964; Fri, 20 Dec 2019 05:57:27 -0800 (PST) X-Google-Smtp-Source: APXvYqxSfKDgnQPCgX+GuveJY9NK0chV/odsaMBDxuNpRgVNqwnnZdYc/FWUcu6uptkRdylglB+TIYrXbJP3bGKOVnU= X-Received: by 2002:ab0:3489:: with SMTP id c9mr9516324uar.53.1576850247585; Fri, 20 Dec 2019 05:57:27 -0800 (PST) MIME-Version: 1.0 References: <20191218053902.193417-1-ruifeng.wang@arm.com> <20191220093709.83992-1-ruifeng.wang@arm.com> In-Reply-To: <20191220093709.83992-1-ruifeng.wang@arm.com> From: David Marchand Date: Fri, 20 Dec 2019 14:57:16 +0100 Message-ID: To: Ruifeng Wang Cc: Aaron Conole , Michael Santana , Thomas Monjalon , "Yigit, Ferruh" , Andrew Rybchenko , dev , Gavin Hu , Honnappa Nagarahalli , nd , Kevin Laatz X-MC-Unique: IFyJdM98OOO1oL9KLft61g-1 X-Mimecast-Spam-Score: 0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v2 0/2] add travis ci support for aarch64 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" On Fri, Dec 20, 2019 at 10:38 AM Ruifeng Wang wrote: > > This patch set is to enable native aarch64 build in Travis CI. > It leverages Travis CI multi arch support. > > As the first step, compilation jobs are added. > Unit test is not added for now due to service limitation. We are > planning to run unit test with no-huge in future. > > This patch set has dependency on: > http://patches.dpdk.org/patch/63969/ > > > v2: > Removed dist designation from matrix since base dist is changing. *If* (I did not think about the implications yet, hence the *If*) we switch the base distribution to Bionic, we can't push it anyway without your second patch. Patches order must be reversed. And for the jobs in travis, the distribution for aarch64 native jobs must be explicitely bionic distribution (you did not update the commitlog in the v2 but not a problem if you restore the dist: bionic entries). We can then take your series. Kevin patch that upgrades globally from xenial to bionic, can then be integrated after yours. > Add explanation for library path issue. Thanks for this. --=20 David Marchand