From 9de7d8d6f16ec7a7e49b964ee44a28267a6c2729 Mon Sep 17 00:00:00 2001 From: mintty Date: Thu, 31 Mar 2022 00:00:00 +0200 Subject: [PATCH] CI control file --- appveyor.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..f4c6507 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,26 @@ +# This file is part of wsltty project + +# Build image; of course wsltty has nothing to do with Visual Studio - +# this is just the name of Appveyor's build environment image +# that also contains cygwin +image: Visual Studio 2022 + +# Version format +version: "#{build}" + +# Do not increment build number after pull requests +pull_requests: + do_not_increment_build_number: true + +# Do not start a new build when a new Git tag is created +skip_tags: true + +build_script: +- cmd: | + set PATH=C:\cygwin64\bin;%PATH% + make + +test_script: +- cmd: | + bin\mintty.exe --log mintty.log --exec echo hello mintty + grep echo mintty.log