From 832d811982e4a094b7626dc5981b7945ee4c4f2c Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Tue, 8 Feb 2022 20:21:23 +0900 Subject: [PATCH] Remove appveyor.yml --- appveyor.yml | 53 ---------------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 7e039d94..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,53 +0,0 @@ -# Notes: -# - Minimal appveyor.yml file is an empty file. All sections are optional. -# - Indent each level of configuration with 2 spaces. Do not use tabs! -# - All section names are case-sensitive. -# - Section names should be unique on each level. - -#---------------------------------# -# general configuration # -#---------------------------------# - -# version format -#version: 0.10.{build} - -# branches to build -branches: - # blacklist - except: - - gh-pages - -# Do not build on tags (GitHub only) -skip_tags: true - -#---------------------------------# -# environment configuration # -#---------------------------------# - -os: Windows Server 2012 - -# scripts that run after cloning repository -install: - # install Win-Flex-Bison - #- cmd: cinst winflexbison -y - -#---------------------------------# -# build configuration # -#---------------------------------# - -# scripts to run before build -before_build: - - cmd: cmake . - -# scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services) -# before_package: - -# scripts to run after build -# after_build: - -# to run your custom scripts instead of automatic MSBuild -build_script: - - cmd: cmake --build . - -# to disable automatic builds -# build: off