From e573b3020c032400eed60b649a2cbf55266e6bb0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Thu, 30 Jun 2016 16:03:25 +0200 Subject: Add current configurations from old repository --- .../YouCompleteMe/ci/appveyor/appveyor_install.bat | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100755 vim/bundle/YouCompleteMe/ci/appveyor/appveyor_install.bat (limited to 'vim/bundle/YouCompleteMe/ci/appveyor/appveyor_install.bat') diff --git a/vim/bundle/YouCompleteMe/ci/appveyor/appveyor_install.bat b/vim/bundle/YouCompleteMe/ci/appveyor/appveyor_install.bat new file mode 100755 index 0000000..33c7807 --- /dev/null +++ b/vim/bundle/YouCompleteMe/ci/appveyor/appveyor_install.bat @@ -0,0 +1,22 @@ +git submodule update --init --recursive +:: Batch script will not exit if a command returns an error, so we manually do +:: it for commands that may fail. +if %errorlevel% neq 0 exit /b %errorlevel% + +:: +:: Python configuration +:: + +if %arch% == 32 ( + set python_path=C:\Python%python% +) else ( + set python_path=C:\Python%python%-x64 +) + +set PATH=%python_path%;%python_path%\Scripts;%PATH% +python --version + +appveyor DownloadFile https://bootstrap.pypa.io/get-pip.py +python get-pip.py +pip install -r python\test_requirements.txt +if %errorlevel% neq 0 exit /b %errorlevel% -- cgit v1.2.3