mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 07:10:06 +08:00
cd6ea298f2
* Add incsearch.vim into bundle dir * Fix java neoformat config close #3573 * Use echom instead in pull.vim
36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
version: 1.0.{build}
|
|
build: off
|
|
test_script:
|
|
- ps: >-
|
|
git clone --quiet --depth 1 https://github.com/thinca/vim-themis.git themis
|
|
|
|
git clone --quiet --depth 1 https://github.com/vim-jp/vital.vim.git vital
|
|
|
|
git clone --quiet --depth 1 https://github.com/haya14busa/vital-vimlcompiler vital-vimlcompiler
|
|
|
|
git clone --quiet --depth 1 https://github.com/haya14busa/vital-safe-string vital-safe-string
|
|
|
|
git clone --quiet --depth 1 https://github.com/haya14busa/vital-power-assert vital-power-assert
|
|
|
|
|
|
|
|
$zip = $Env:APPVEYOR_BUILD_FOLDER + '\vim.zip'
|
|
|
|
$vim = $Env:APPVEYOR_BUILD_FOLDER + '\vim'
|
|
|
|
|
|
(New-Object Net.WebClient).DownloadFile('http://files.kaoriya.net/vim/vim74-kaoriya-win64.zip', $zip)
|
|
|
|
|
|
[Reflection.Assembly]::LoadWithPartialName('System.IO.Compression.FileSystem') > $null
|
|
|
|
[System.IO.Compression.ZipFile]::ExtractToDirectory($zip, $vim)
|
|
|
|
|
|
$Env:THEMIS_VIM = $vim + '\vim74-kaoriya-win64\vim.exe'
|
|
|
|
|
|
& $Env:THEMIS_VIM --version
|
|
|
|
.\themis\bin\themis.bat -r --runtimepath vital --runtimepath vital-vimlcompiler --runtimepath vital-safe-string --runtimepath vital-power-assert --reporter spec
|