1
0
mirror of https://github.com/mintty/wsltty.git synced 2024-10-05 18:31:04 +01:00

CI control file

This commit is contained in:
mintty 2022-03-31 00:00:00 +02:00
parent c91ec886b5
commit 9de7d8d6f1

26
appveyor.yml Normal file
View File

@ -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