From patchwork Fri May 8 06:04:48 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Numan Siddique X-Patchwork-Id: 1285840 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=openvswitch.org (client-ip=140.211.166.136; helo=silver.osuosl.org; envelope-from=ovs-dev-bounces@openvswitch.org; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ovn.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 49JKYt74s3z9sRY for ; Fri, 8 May 2020 16:05:22 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 461C321553; Fri, 8 May 2020 06:05:21 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id hul-fBgGi+kp; Fri, 8 May 2020 06:05:14 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [140.211.9.56]) by silver.osuosl.org (Postfix) with ESMTP id 2C08121561; Fri, 8 May 2020 06:05:03 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id 12A60C088B; Fri, 8 May 2020 06:05:03 +0000 (UTC) X-Original-To: dev@openvswitch.org Delivered-To: ovs-dev@lists.linuxfoundation.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by lists.linuxfoundation.org (Postfix) with ESMTP id 8549AC0890 for ; Fri, 8 May 2020 06:05:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 8114A89390 for ; Fri, 8 May 2020 06:05:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id y7jX+MXh-1Wg for ; Fri, 8 May 2020 06:05:00 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from relay5-d.mail.gandi.net (relay5-d.mail.gandi.net [217.70.183.197]) by hemlock.osuosl.org (Postfix) with ESMTPS id BBC588939B for ; Fri, 8 May 2020 06:04:57 +0000 (UTC) X-Originating-IP: 115.99.89.246 Received: from nusiddiq.home.org.com (unknown [115.99.89.246]) (Authenticated sender: numans@ovn.org) by relay5-d.mail.gandi.net (Postfix) with ESMTPSA id 30F801C0002; Fri, 8 May 2020 06:04:52 +0000 (UTC) From: numans@ovn.org To: dev@openvswitch.org Date: Fri, 8 May 2020 11:34:48 +0530 Message-Id: <20200508060448.246991-1-numans@ovn.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200508060325.246679-1-numans@ovn.org> References: <20200508060325.246679-1-numans@ovn.org> MIME-Version: 1.0 Cc: Dave Tucker Subject: [ovs-dev] [PATCH ovn 3/7] Remove Appveyor X-BeenThere: ovs-dev@openvswitch.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: ovs-dev-bounces@openvswitch.org Sender: "dev" From: Dave Tucker AppVeyor is not used for testing OVN Submitted-at: https://github.com/ovn-org/ovn/pull/38 Signed-off-by: Dave Tucker Signed-off-by: Numan Siddique --- Makefile.am | 1 - appveyor.yml | 46 ---------------------------------------------- 2 files changed, 47 deletions(-) delete mode 100644 appveyor.yml diff --git a/Makefile.am b/Makefile.am index b75c12eff..8b49ba255 100644 --- a/Makefile.am +++ b/Makefile.am @@ -93,7 +93,6 @@ EXTRA_DIST = \ .travis/linux-prepare.sh \ .travis/osx-build.sh \ .travis/osx-prepare.sh \ - appveyor.yml \ boot.sh \ poc/builders/Vagrantfile \ poc/playbook-centos-builder.yml \ diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 2e5c37a37..000000000 --- a/appveyor.yml +++ /dev/null @@ -1,46 +0,0 @@ -version: 1.0.{build} -branches: - only: - - master -clone_folder: C:\openvswitch -init: -- ps: >- - mkdir C:\pthreads-win32 - - mkdir C:\ovs-build-downloads - - $source = "ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-9-1-release.zip" - - $destination = "C:\pthreads-win32\pthreads-win32.zip" - - Invoke-WebRequest $source -OutFile $destination - - $source = "https://slproweb.com/download/Win32OpenSSL-1_0_2n.exe" - - $destination = "C:\ovs-build-downloads\Win32OpenSSL-1_0_2n.exe" - - Invoke-WebRequest $source -OutFile $destination - - cd C:\pthreads-win32 - - 7z x C:\pthreads-win32\pthreads-win32.zip - - cd C:\ovs-build-downloads - - .\Win32OpenSSL-1_0_2n.exe /silent /verysilent /sp- /suppressmsgboxes - - Start-Sleep -s 30 - - cd C:\openvswitch - - python -m pip install six pypiwin32 --disable-pip-version-check - -build_script: -- '"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd"' -- C:\MinGW\msys\1.0\bin\bash -lc "echo \"C:/MinGW /mingw\" > /etc/fstab" -- C:\MinGW\msys\1.0\bin\bash -lc "cp /c/pthreads-win32/Pre-built.2/dll/x86/*.dll /c/openvswitch/." -- C:\MinGW\msys\1.0\bin\bash -lc "mv /bin/link.exe /bin/link_copy.exe" -- 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 -lShlwapi -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"