From patchwork Thu May 25 17:13:13 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alin Serdean X-Patchwork-Id: 767057 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from mail.linuxfoundation.org (mail.linuxfoundation.org [140.211.169.12]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3wYbSd49cQz9s8N for ; Fri, 26 May 2017 03:13:21 +1000 (AEST) Received: from mail.linux-foundation.org (localhost [127.0.0.1]) by mail.linuxfoundation.org (Postfix) with ESMTP id E90BFBC4; Thu, 25 May 2017 17:13:18 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@mail.linuxfoundation.org Received: from smtp1.linuxfoundation.org (smtp1.linux-foundation.org [172.17.192.35]) by mail.linuxfoundation.org (Postfix) with ESMTPS id 53B64B3F for ; Thu, 25 May 2017 17:13:17 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.cloudbasesolutions.com (mail.cloudbasesolutions.com [91.232.152.5]) by smtp1.linuxfoundation.org (Postfix) with ESMTP id EEA9B25E for ; Thu, 25 May 2017 17:13:15 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.cloudbasesolutions.com (Postfix) with ESMTP id DFCF542B1D; Thu, 25 May 2017 20:13:14 +0300 (EEST) X-Virus-Scanned: amavisd-new at cloudbasesolutions.com Received: from mail.cloudbasesolutions.com ([127.0.0.1]) by localhost (mail.cloudbasesolutions.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PtWEYk7fnJS5; Thu, 25 May 2017 20:13:14 +0300 (EEST) Received: from mail.cloudbasesolutions.com (unknown [10.77.78.3]) by mail.cloudbasesolutions.com (Postfix) with ESMTP id 4E31A42B08; Thu, 25 May 2017 20:13:14 +0300 (EEST) Received: from CBSEX1.cloudbase.local ([10.77.78.3]) by CBSEX1.cloudbase.local ([10.77.78.3]) with mapi id 14.03.0319.002; Thu, 25 May 2017 19:13:14 +0200 From: Alin Serdean To: Guru Shetty Thread-Topic: [ovs-dev] [PATCH 3/3] appveyor: Add new make target Thread-Index: AQHS0+5FvF1SMKp3jUefE+eN8Gu5tqIFFDAAgAA4O3A= Date: Thu, 25 May 2017 17:13:13 +0000 Message-ID: <6FDA0CACF4BC624BBE12167875D71C9B4094ECD6@CBSEX1.cloudbase.local> References: <20170523175858.524-1-aserdean@cloudbasesolutions.com> <20170523175858.524-3-aserdean@cloudbasesolutions.com> In-Reply-To: Accept-Language: en-US, it-IT Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.77.78.1] MIME-Version: 1.0 X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,HTML_MESSAGE, RP_MATCHES_RCVD autolearn=ham version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on smtp1.linux-foundation.org X-Content-Filtered-By: Mailman/MimeDel 2.1.12 Cc: "dev@openvswitch.org" Subject: Re: [ovs-dev] [PATCH 3/3] appveyor: Add new make target X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: ovs-dev-bounces@openvswitch.org Errors-To: ovs-dev-bounces@openvswitch.org Thanks a lot! Alin. From: Guru Shetty [mailto:guru@ovn.org] Sent: Thursday, May 25, 2017 6:52 PM To: Alin Serdean Cc: dev@openvswitch.org Subject: Re: [ovs-dev] [PATCH 3/3] appveyor: Add new make target On 23 May 2017 at 10:59, Alin Serdean > wrote: This patch adds the new make target 'datapath_windows_analyze' (static analysis over the windows datapath code) to the appveyor build. Signed-off-by: Alin Gabriel Serdean > I applied this series to master --- appveyor.yml | 1 + 1 file changed, 1 insertion(+) -- 2.10.2.windows.1 diff --git a/appveyor.yml b/appveyor.yml index edcead6..6ca1479 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -43,3 +43,4 @@ build_script: - C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && ./boot.sh" - C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && ./configure CC=build-aux/cccl LD=\"`which link`\" LIBS=\"-lws2_32 -liphlpapi -lwbemuuid -lole32 -loleaut32\" --with-pthread=C:/pthreads-win32/Pre-built.2 --with-openssl=C:/OpenSSL-Win32 --with-vstudiotarget=\"Debug\"" - C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && make" +- C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && make datapath_windows_analyze"