2018-03-11 15:44:07 -07:00
|
|
|
Set-PSDebug -Trace 1
|
|
|
|
|
|
|
|
$env:CONFIGURATION -match '^(?<compiler>\w+)_(?<bits>32|64)(?:-(?<option>\w+))?$'
|
|
|
|
$compiler = $Matches.compiler
|
|
|
|
$compileOption = $Matches.option
|
|
|
|
$bits = $Matches.bits
|
|
|
|
$cmakeBuildType = 'RelWithDebInfo'
|
|
|
|
$depsCmakeVars = @{
|
|
|
|
CMAKE_BUILD_TYPE = $cmakeBuildType;
|
|
|
|
}
|
|
|
|
$nvimCmakeVars = @{
|
|
|
|
CMAKE_BUILD_TYPE = $cmakeBuildType;
|
|
|
|
BUSTED_OUTPUT_TYPE = 'nvim';
|
|
|
|
}
|
|
|
|
|
2018-03-30 12:54:39 -07:00
|
|
|
# For pull requests, skip some build configurations to save time.
|
2018-09-04 12:13:36 -07:00
|
|
|
if ($env:APPVEYOR_PULL_REQUEST_HEAD_COMMIT -and $env:CONFIGURATION -match '^(MSVC_64|MINGW_32|MINGW_64-gcov)$') {
|
2018-03-30 12:54:39 -07:00
|
|
|
exit 0
|
|
|
|
}
|
|
|
|
|
2018-03-11 15:44:07 -07:00
|
|
|
function exitIfFailed() {
|
|
|
|
if ($LastExitCode -ne 0) {
|
|
|
|
exit $LastExitCode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($compiler -eq 'MINGW') {
|
|
|
|
if ($bits -eq 32) {
|
|
|
|
$arch = 'i686'
|
|
|
|
}
|
|
|
|
elseif ($bits -eq 64) {
|
|
|
|
$arch = 'x86_64'
|
|
|
|
}
|
|
|
|
if ($compileOption -eq 'gcov') {
|
|
|
|
$nvimCmakeVars['USE_GCOV'] = 'ON'
|
|
|
|
$uploadToCodecov = $true
|
|
|
|
}
|
|
|
|
# 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.
|
2018-08-12 04:39:46 -07:00
|
|
|
$cmakeGenerator = 'Ninja'
|
|
|
|
$cmakeGeneratorArgs = '-v'
|
|
|
|
$mingwPackages = @('ninja', 'cmake', 'perl', 'diffutils', 'unibilium').ForEach({
|
|
|
|
"mingw-w64-$arch-$_"
|
|
|
|
})
|
2018-03-11 15:44:07 -07:00
|
|
|
|
|
|
|
# Add MinGW to the PATH
|
|
|
|
$env:PATH = "C:\msys64\mingw$bits\bin;$env:PATH"
|
|
|
|
|
|
|
|
# Build third-party dependencies
|
|
|
|
C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm -Su" ; exitIfFailed
|
2018-08-12 04:39:46 -07:00
|
|
|
C:\msys64\usr\bin\bash -lc "pacman --verbose --noconfirm --needed -S $mingwPackages" ; exitIfFailed
|
2018-03-11 15:44:07 -07:00
|
|
|
}
|
|
|
|
elseif ($compiler -eq 'MSVC') {
|
|
|
|
$cmakeGeneratorArgs = '/verbosity:normal'
|
|
|
|
if ($bits -eq 32) {
|
|
|
|
$cmakeGenerator = 'Visual Studio 15 2017'
|
|
|
|
}
|
|
|
|
elseif ($bits -eq 64) {
|
|
|
|
$cmakeGenerator = 'Visual Studio 15 2017 Win64'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
# Setup python (use AppVeyor system python)
|
|
|
|
C:\Python27\python.exe -m pip install neovim ; exitIfFailed
|
|
|
|
C:\Python35\python.exe -m pip install neovim ; exitIfFailed
|
|
|
|
# Disambiguate python3
|
|
|
|
move c:\Python35\python.exe c:\Python35\python3.exe
|
|
|
|
$env:PATH = "C:\Python35;C:\Python27;$env:PATH"
|
|
|
|
# Sanity check
|
|
|
|
python -c "import neovim; print(str(neovim))" ; exitIfFailed
|
|
|
|
python3 -c "import neovim; print(str(neovim))" ; exitIfFailed
|
|
|
|
|
|
|
|
$env:PATH = "C:\Ruby24\bin;$env:PATH"
|
|
|
|
cmd /c gem.cmd install neovim ; exitIfFailed
|
|
|
|
where.exe neovim-ruby-host.bat ; exitIfFailed
|
|
|
|
|
|
|
|
cmd /c npm.cmd install -g neovim ; exitIfFailed
|
|
|
|
where.exe neovim-node-host.cmd ; exitIfFailed
|
2018-06-04 16:42:26 -07:00
|
|
|
cmd /c npm link neovim
|
2018-03-11 15:44:07 -07:00
|
|
|
|
|
|
|
function convertToCmakeArgs($vars) {
|
|
|
|
return $vars.GetEnumerator() | foreach { "-D$($_.Key)=$($_.Value)" }
|
|
|
|
}
|
|
|
|
|
|
|
|
mkdir .deps
|
|
|
|
cd .deps
|
|
|
|
cmake -G $cmakeGenerator $(convertToCmakeArgs($depsCmakeVars)) ..\third-party\ ; exitIfFailed
|
|
|
|
cmake --build . --config $cmakeBuildType -- $cmakeGeneratorArgs ; exitIfFailed
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# Build Neovim
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G $cmakeGenerator $(convertToCmakeArgs($nvimCmakeVars)) .. ; exitIfFailed
|
|
|
|
cmake --build . --config $cmakeBuildType -- $cmakeGeneratorArgs ; exitIfFailed
|
|
|
|
bin\nvim --version ; exitIfFailed
|
|
|
|
|
|
|
|
# Functional tests
|
2018-03-26 08:54:44 -07:00
|
|
|
# The $LastExitCode from MSBuild can't be trusted
|
2018-04-13 10:38:31 -07:00
|
|
|
$failed = $false
|
|
|
|
# Temporarily turn off tracing to reduce log file output
|
|
|
|
Set-PSDebug -Off
|
2018-04-13 10:42:02 -07:00
|
|
|
cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs 2>&1 |
|
2018-04-13 10:38:31 -07:00
|
|
|
foreach { $failed = $failed -or
|
2018-10-20 12:49:33 -07:00
|
|
|
$_ -match 'functional tests failed with error'; $_ }
|
2018-04-13 10:38:31 -07:00
|
|
|
Set-PSDebug -Trace 1
|
|
|
|
if ($failed) {
|
|
|
|
exit $LastExitCode
|
2018-03-26 08:54:44 -07:00
|
|
|
}
|
|
|
|
|
2018-03-11 15:44:07 -07:00
|
|
|
|
|
|
|
if ($uploadToCodecov) {
|
|
|
|
C:\msys64\usr\bin\bash -lc "cd /c/projects/neovim; bash <(curl -s https://codecov.io/bash) -c -F functionaltest || echo 'codecov upload failed.'"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Old tests
|
2018-03-27 23:27:10 -07:00
|
|
|
$env:PATH = "C:\msys64\usr\bin;$env:PATH"
|
2018-03-11 15:44:07 -07:00
|
|
|
& "C:\msys64\mingw$bits\bin\mingw32-make.exe" -C $(Convert-Path ..\src\nvim\testdir) VERBOSE=1
|
|
|
|
|
|
|
|
if ($uploadToCodecov) {
|
|
|
|
C:\msys64\usr\bin\bash -lc "cd /c/projects/neovim; bash <(curl -s https://codecov.io/bash) -c -F oldtest || echo 'codecov upload failed.'"
|
|
|
|
}
|
|
|
|
|
|
|
|
# Build artifacts
|
|
|
|
cpack -G ZIP -C RelWithDebInfo
|
|
|
|
if ($env:APPVEYOR_REPO_TAG_NAME -ne $null) {
|
|
|
|
cpack -G NSIS -C RelWithDebInfo
|
|
|
|
}
|