2017-09-05 21:26:14 +00:00
|
|
|
---
|
2017-09-06 18:53:53 +00:00
|
|
|
# Disabling building for AppVeyor. We are just testing things.
|
|
|
|
build: false
|
2017-09-06 18:47:11 +00:00
|
|
|
clone_depth: 10
|
|
|
|
|
|
|
|
init:
|
2017-09-05 22:13:33 +00:00
|
|
|
# Stop git from changing newlines
|
|
|
|
- git config --global core.autocrlf input
|
2017-09-05 21:26:14 +00:00
|
|
|
|
2017-09-06 18:47:11 +00:00
|
|
|
install:
|
|
|
|
# Download and unpack Vim
|
|
|
|
- cd C:\
|
|
|
|
- ps: 'Invoke-WebRequest ftp://ftp.vim.org/pub/vim/pc/vim80-586w32.zip
|
|
|
|
-OutFile C:\vim.zip'
|
|
|
|
- ps: Add-Type -A System.IO.Compression.FileSystem
|
2017-09-06 18:50:51 +00:00
|
|
|
- ps: "[IO.Compression.ZipFile]::ExtractToDirectory('C:\\vim.zip', 'C:\\vim')"
|
2017-09-06 21:53:39 +00:00
|
|
|
# Download and unpack Vim runtime files
|
|
|
|
- cd C:\
|
|
|
|
- ps: 'Invoke-WebRequest ftp://ftp.vim.org/pub/vim/pc/vim80-586rt.zip
|
|
|
|
-OutFile C:\rt.zip'
|
|
|
|
- ps: "[IO.Compression.ZipFile]::ExtractToDirectory('C:\\rt.zip', 'C:\\vim')"
|
2017-09-06 19:03:37 +00:00
|
|
|
# Set up Vader for tests
|
|
|
|
- git clone https://github.com/junegunn/vader.vim C:\vader
|
|
|
|
- cd C:\vader
|
|
|
|
- git checkout -qf c6243dd81c98350df4dec608fa972df98fa2a3af
|
|
|
|
- cd C:\
|
2017-09-05 22:00:42 +00:00
|
|
|
|
2017-09-05 21:26:14 +00:00
|
|
|
test_script:
|
2017-09-06 22:28:39 +00:00
|
|
|
- cd C:\projects\ale
|
2017-09-06 18:56:56 +00:00
|
|
|
- C:\vim\vim\vim80\vim.exe --version
|
2017-09-06 22:28:39 +00:00
|
|
|
- 'C:\vim\vim\vim80\vim.exe -u test\vimrc "+Vader! test/test_path_uri.vader"'
|