vis
a vi-like editor based on Plan 9's structural regular expressions
git clone https://9o.is/git/vis.git
commit ac7cac355116c72123efc7b3751c711bdf96567d parent 41e9d0062354ffd3c051e4b4d25f9468e13874ec Author: Marc André Tanner <mat@brain-dump.org> Date: Thu, 3 Nov 2016 18:49:27 +0100 build: add automated Cygwin builds using AppVeyor Diffstat:
| A | appveyor.yml | | | 43 | +++++++++++++++++++++++++++++++++++++++++++ |
1 file changed, 43 insertions(+), 0 deletions(-)
diff --git a/appveyor.yml b/appveyor.yml @@ -0,0 +1,43 @@ +environment: + global: + CYG_MIRROR: http://cygwin.mirror.constant.com + + matrix: + - CYG_ARCH: cygwin + CYG_ROOT: C:\cygwin + CYG_SETUP: C:\cygwin\setup-x86.exe + - CYG_ARCH: cygwin64 + CYG_ROOT: C:\cygwin64 + CYG_SETUP: C:\cygwin64\setup-x86_64.exe + +clone_depth: 1 + +init: + # do not convert new lines to CRLF + - git config --global core.autocrlf input + # print processor and OS architecture + - wmic computersystem get systemtype + - wmic OS get OSArchitecture + +cache: + - '%APPVEYOR_BUILD_FOLDER%\dependency\sources' + - '%CYG_ROOT%\var\cache\setup' + +install: + - '%CYG_SETUP% --quiet-mode --no-shortcuts --packages patch,lua,lua-devel,lua-lpeg,libncurses-devel' + - '%CYG_ROOT%\bin\cygcheck --check-setup --dump-only' + +before_build: + - '%CYG_ROOT%\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && make clean"' + +build_script: + - '%CYG_ROOT%\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && make local && file vis"' + +test_script: + - '%CYG_ROOT%\bin\bash -lc "cd $APPVEYOR_BUILD_FOLDER && make test"' + +after_test: + - 7z a -y vis-%CYG_ARCH%.zip vis.exe lexers *.lua + +artifacts: + - path: vis-%CYG_ARCH%.zip