summaryrefslogtreecommitdiff
path: root/.appveyor.yml
blob: 394aef9caec56086be6d4bae0f760b703efb8bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
# Disabling building for AppVeyor. We are just testing things.
build: false
clone_depth: 10

init:
  # Stop git from changing newlines
  - git config --global core.autocrlf input

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
  - ps: "[IO.Compression.ZipFile]::ExtractToDirectory('C:\\vim.zip', 'C:\\vim')"
  # 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')"
  # Set up Vader for tests
  - git clone https://github.com/junegunn/vader.vim C:\vader
  - cd C:\vader
  - git checkout -qf c6243dd81c98350df4dec608fa972df98fa2a3af
  - cd C:\

test_script:
  - cd C:\projects\ale
  - C:\vim\vim\vim80\vim.exe --version
  - 'C:\vim\vim\vim80\vim.exe -u test\vimrc "+Vader! test/test_path_uri.vader"'