mirror of
https://github.com/neovim/neovim.git
synced 2024-12-19 18:55:14 -07:00
5b692124cc
provider#node#can_inspect will fail on some systems because it is common to have old node versions in OS (any Linux OS that has LTS releases) and CI (Travis, Appveyor). NODE_PATH can be trivially set with VimL. Build scripts don't have to set it for the nodejs tests to work. NODE_PATH is optional to begin with and is used only as a workaround for the neovim node.js host.
76 lines
2.5 KiB
Batchfile
76 lines
2.5 KiB
Batchfile
:: These are native MinGW builds, but they use the toolchain inside
|
|
:: MSYS2, this allows using all the dependencies and tools available
|
|
:: in MSYS2, but we cannot build inside the MSYS2 shell.
|
|
echo on
|
|
if "%CONFIGURATION%" == "MINGW_32" (
|
|
set ARCH=i686
|
|
set BITS=32
|
|
) else (
|
|
set ARCH=x86_64
|
|
set BITS=64
|
|
)
|
|
if "%CONFIGURATION%" == "MINGW_64-gcov" (
|
|
set USE_GCOV="-DUSE_GCOV=ON"
|
|
)
|
|
|
|
:: We cannot have sh.exe in the PATH (MinGW)
|
|
set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
|
|
set PATH=C:\msys64\mingw%BITS%\bin;C:\Windows\System32;C:\Windows;%PATH%
|
|
:: The default cpack in the PATH is not CMake
|
|
set PATH=C:\Program Files (x86)\CMake\bin\cpack.exe;%PATH%
|
|
|
|
:: Build third-party dependencies
|
|
C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm -Su" || goto :error
|
|
C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm --needed -S mingw-w64-%ARCH%-cmake mingw-w64-%ARCH%-perl mingw-w64-%ARCH%-diffutils mingw-w64-%ARCH%-unibilium gperf" || goto :error
|
|
|
|
:: Setup python (use AppVeyor system python)
|
|
C:\Python27\python.exe -m pip install neovim || goto :error
|
|
C:\Python35\python.exe -m pip install neovim || goto :error
|
|
:: Disambiguate python3
|
|
move c:\Python35\python.exe c:\Python35\python3.exe
|
|
set PATH=C:\Python35;C:\Python27;%PATH%
|
|
:: Sanity check
|
|
python -c "import neovim; print(str(neovim))" || goto :error
|
|
python3 -c "import neovim; print(str(neovim))" || goto :error
|
|
|
|
set PATH=C:\Ruby24\bin;%PATH%
|
|
cmd /c gem.cmd install neovim || goto :error
|
|
where.exe neovim-ruby-host.bat || goto :error
|
|
|
|
cmd /c npm.cmd install -g neovim || goto :error
|
|
where.exe neovim-node-host.cmd || goto :error
|
|
|
|
mkdir .deps
|
|
cd .deps
|
|
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo ..\third-party\ || goto :error
|
|
mingw32-make VERBOSE=1 || goto :error
|
|
cd ..
|
|
|
|
:: Build Neovim
|
|
mkdir build
|
|
cd build
|
|
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=RelWithDebInfo -DBUSTED_OUTPUT_TYPE=nvim %USE_GCOV% -DGPERF_PRG="C:\msys64\usr\bin\gperf.exe" .. || goto :error
|
|
mingw32-make VERBOSE=1 || goto :error
|
|
bin\nvim --version || goto :error
|
|
|
|
:: Functional tests
|
|
mingw32-make functionaltest VERBOSE=1 || goto :error
|
|
|
|
:: Old tests
|
|
setlocal
|
|
set PATH=%PATH%;C:\msys64\usr\bin
|
|
mingw32-make -C "%~dp0\..\src\nvim\testdir" VERBOSE=1
|
|
endlocal
|
|
|
|
if defined USE_GCOV (
|
|
C:\msys64\usr\bin\bash -lc "cd /c/projects/neovim; bash <(curl -s https://codecov.io/bash) || echo 'codecov upload failed.'"
|
|
)
|
|
|
|
:: Build artifacts
|
|
cpack -G ZIP -C RelWithDebInfo
|
|
if defined APPVEYOR_REPO_TAG_NAME cpack -G NSIS -C RelWithDebInfo
|
|
|
|
goto :EOF
|
|
:error
|
|
exit /b %errorlevel%
|