aboutsummaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2016-11-10 11:05:45 +0100
committerMarc André Tanner <mat@brain-dump.org>2016-11-13 22:58:33 +0100
commit0a9f76eae894c6468bb58a683000e33f1be865b2 (patch)
tree03fffbf7bf9826d34b9749698704682757c18ada /appveyor.yml
parent385f52409b7d5bf2d32debcd35cc73a51b5518cd (diff)
downloadvis-0a9f76eae894c6468bb58a683000e33f1be865b2.tar.gz
vis-0a9f76eae894c6468bb58a683000e33f1be865b2.tar.xz
build: do not clutter source tree with AppVeyor configuration file
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml43
1 files changed, 0 insertions, 43 deletions
diff --git a/appveyor.yml b/appveyor.yml
deleted file mode 100644
index 512135a..0000000
--- a/appveyor.yml
+++ /dev/null
@@ -1,43 +0,0 @@
-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