diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-09-15 19:18:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-09-15 19:18:18 +0200 |
commit | 0600f3511c6018cbcdb170a904bcf6533a06bf2d (patch) | |
tree | ee36908d3fdc54e119e7daf85ffe8eda09b58f7f /appveyor.yml | |
parent | 7b256fe7445b46929f660ea74e9090418f857696 (diff) | |
download | vim-git-0600f3511c6018cbcdb170a904bcf6533a06bf2d.tar.gz |
patch 7.4.872v7.4.872
Problem: Not using CI services available.
Solution: Add configuration files for travis and appveyor. (PR #401)
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 000000000..3bda489a4 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,15 @@ +version: "{build}" + +before_build: + - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release' + +build_script: + - cd src + - sed -e "s/\$(LINKARGS2)/\$(LINKARGS2) | sed -e 's#.*\\\\r.*##'/" Make_mvc.mak > Make_mvc2.mak + - nmake -f Make_mvc2.mak CPU=AMD64 GUI=yes IME=yes MBYTE=yes ICONV=yes DEBUG=no PYTHON_VER=27 DYNAMIC_PYTHON=yes PYTHON=C:\Python27-x64 PYTHON3_VER=34 DYNAMIC_PYTHON3=yes PYTHON3=C:\Python34-x64 + - .\gvim -u NONE -c "redir @a | ver | 0put a | wq!" ver.txt + - type ver.txt + +test_script: + - cd testdir + - nmake -f Make_dos.mak VIMPROG=..\gvim |