2020-01-02 06:52:18 -07:00
|
|
|
param([switch]$NoTests)
|
2019-10-22 17:28:56 -07:00
|
|
|
Set-StrictMode -Version Latest
|
2019-10-20 19:30:31 -07:00
|
|
|
$ErrorActionPreference = 'Stop'
|
|
|
|
$ProgressPreference = 'SilentlyContinue'
|
2018-03-11 15:44:07 -07:00
|
|
|
|
|
|
|
$env:CONFIGURATION -match '^(?<compiler>\w+)_(?<bits>32|64)(?:-(?<option>\w+))?$'
|
|
|
|
$compiler = $Matches.compiler
|
2019-10-22 17:28:56 -07:00
|
|
|
$compileOption = if ($Matches -contains 'option') {$Matches.option} else {''}
|
2018-03-11 15:44:07 -07:00
|
|
|
$bits = $Matches.bits
|
2019-04-08 15:17:07 -07:00
|
|
|
$cmakeBuildType = $(if ($env:CMAKE_BUILD_TYPE -ne $null) {$env:CMAKE_BUILD_TYPE} else {'RelWithDebInfo'});
|
2019-04-07 15:14:01 -07:00
|
|
|
$buildDir = [System.IO.Path]::GetFullPath("$(pwd)")
|
2018-03-11 15:44:07 -07:00
|
|
|
$depsCmakeVars = @{
|
|
|
|
CMAKE_BUILD_TYPE = $cmakeBuildType;
|
|
|
|
}
|
|
|
|
$nvimCmakeVars = @{
|
|
|
|
CMAKE_BUILD_TYPE = $cmakeBuildType;
|
|
|
|
BUSTED_OUTPUT_TYPE = 'nvim';
|
2019-04-07 15:14:01 -07:00
|
|
|
DEPS_PREFIX=$(if ($env:DEPS_PREFIX -ne $null) {$env:DEPS_PREFIX} else {".deps/usr"});
|
2018-03-11 15:44:07 -07:00
|
|
|
}
|
2019-07-27 02:55:17 -07:00
|
|
|
if ($env:DEPS_BUILD_DIR -eq $null) {
|
|
|
|
$env:DEPS_BUILD_DIR = ".deps";
|
|
|
|
}
|
2018-10-18 21:07:58 -07:00
|
|
|
$uploadToCodeCov = $false
|
2018-03-11 15:44:07 -07:00
|
|
|
|
|
|
|
function exitIfFailed() {
|
|
|
|
if ($LastExitCode -ne 0) {
|
|
|
|
exit $LastExitCode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-20 17:49:48 -07:00
|
|
|
if (-not $NoTests) {
|
|
|
|
node --version
|
|
|
|
npm.cmd --version
|
2020-01-11 11:04:35 -07:00
|
|
|
}
|
|
|
|
|
2019-07-27 02:55:17 -07:00
|
|
|
if (-Not (Test-Path -PathType container $env:DEPS_BUILD_DIR)) {
|
|
|
|
write-host "cache dir not found: $($env:DEPS_BUILD_DIR)"
|
|
|
|
mkdir $env:DEPS_BUILD_DIR
|
2019-04-07 16:19:38 -07:00
|
|
|
} else {
|
2019-07-27 02:55:17 -07:00
|
|
|
write-host "cache dir $($env:DEPS_BUILD_DIR) size: $(Get-ChildItem $env:DEPS_BUILD_DIR -recurse | Measure-Object -property length -sum | Select -expand sum)"
|
2019-04-07 15:14:01 -07:00
|
|
|
}
|
|
|
|
|
2018-03-11 15:44:07 -07:00
|
|
|
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
|
2019-06-25 06:35:33 -07:00
|
|
|
$env:GCOV = "C:\msys64\mingw$bits\bin\gcov"
|
2019-10-08 18:07:42 -07:00
|
|
|
|
|
|
|
# Setup/build Lua coverage.
|
|
|
|
$env:USE_LUACOV = 1
|
|
|
|
$env:BUSTED_ARGS = "--coverage"
|
2018-03-11 15:44:07 -07:00
|
|
|
}
|
|
|
|
# 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'
|
2020-03-07 20:37:00 -07:00
|
|
|
$mingwPackages = @('ninja', 'cmake', 'diffutils').ForEach({
|
2018-08-12 04:39:46 -07:00
|
|
|
"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"
|
|
|
|
|
2018-11-04 06:39:13 -07:00
|
|
|
# Avoid pacman "warning" which causes non-zero return code. https://github.com/open62541/open62541/issues/2068
|
|
|
|
& C:\msys64\usr\bin\mkdir -p /var/cache/pacman/pkg
|
|
|
|
|
2018-03-11 15:44:07 -07:00
|
|
|
# Build third-party dependencies
|
2020-12-15 21:28:14 -07:00
|
|
|
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'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-02 06:52:18 -07:00
|
|
|
if (-not $NoTests) {
|
|
|
|
# Setup python (use AppVeyor system python)
|
2020-09-16 10:29:43 -07:00
|
|
|
|
2021-02-04 20:18:19 -07:00
|
|
|
# Disambiguate python3, if needed
|
|
|
|
if (-not (Test-Path -Path C:\hostedtoolcache\windows\Python\3.5.4\x64\python3.exe) ) {
|
|
|
|
move C:\hostedtoolcache\windows\Python\3.5.4\x64\python.exe C:\hostedtoolcache\windows\Python\3.5.4\x64\python3.exe
|
|
|
|
}
|
|
|
|
$env:PATH = "C:\hostedtoolcache\windows\Python\2.7.18\x64;C:\hostedtoolcache\windows\Python\3.5.4\x64;$env:PATH"
|
|
|
|
|
|
|
|
python -m pip install pynvim ; exitIfFailed
|
|
|
|
python3 -m pip install pynvim ; exitIfFailed
|
2020-01-02 06:52:18 -07:00
|
|
|
# Sanity check
|
|
|
|
python -c "import pynvim; print(str(pynvim))" ; exitIfFailed
|
|
|
|
python3 -c "import pynvim; print(str(pynvim))" ; exitIfFailed
|
|
|
|
|
2020-10-18 09:13:27 -07:00
|
|
|
gem.cmd install --pre neovim
|
2020-01-02 06:52:18 -07:00
|
|
|
Get-Command -CommandType Application neovim-ruby-host.bat
|
|
|
|
|
|
|
|
npm.cmd install -g neovim
|
|
|
|
Get-Command -CommandType Application neovim-node-host.cmd
|
|
|
|
npm.cmd link neovim
|
2019-10-20 19:30:31 -07:00
|
|
|
}
|
2019-06-09 04:26:48 -07:00
|
|
|
|
2019-11-19 11:10:30 -07:00
|
|
|
if ($compiler -eq 'MSVC') {
|
|
|
|
# Required for LuaRocks (https://github.com/luarocks/luarocks/issues/1039#issuecomment-507296940).
|
|
|
|
$env:VCINSTALLDIR = "C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.16.27023/"
|
|
|
|
}
|
|
|
|
|
2018-03-11 15:44:07 -07:00
|
|
|
function convertToCmakeArgs($vars) {
|
|
|
|
return $vars.GetEnumerator() | foreach { "-D$($_.Key)=$($_.Value)" }
|
|
|
|
}
|
|
|
|
|
2019-07-27 02:55:17 -07:00
|
|
|
cd $env:DEPS_BUILD_DIR
|
2019-04-07 15:14:01 -07:00
|
|
|
cmake -G $cmakeGenerator $(convertToCmakeArgs($depsCmakeVars)) "$buildDir/third-party/" ; exitIfFailed
|
2018-03-11 15:44:07 -07:00
|
|
|
cmake --build . --config $cmakeBuildType -- $cmakeGeneratorArgs ; exitIfFailed
|
2019-04-07 15:14:01 -07:00
|
|
|
cd $buildDir
|
2018-03-11 15:44:07 -07:00
|
|
|
|
|
|
|
# Build Neovim
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake -G $cmakeGenerator $(convertToCmakeArgs($nvimCmakeVars)) .. ; exitIfFailed
|
|
|
|
cmake --build . --config $cmakeBuildType -- $cmakeGeneratorArgs ; exitIfFailed
|
2019-06-15 17:33:47 -07:00
|
|
|
.\bin\nvim --version ; exitIfFailed
|
|
|
|
|
|
|
|
# Ensure that the "win32" feature is set.
|
|
|
|
.\bin\nvim -u NONE --headless -c 'exe !has(\"win32\").\"cq\"' ; exitIfFailed
|
2018-03-11 15:44:07 -07:00
|
|
|
|
2019-10-08 18:07:42 -07:00
|
|
|
if ($env:USE_LUACOV -eq 1) {
|
|
|
|
& $env:DEPS_PREFIX\luarocks\luarocks.bat install cluacov
|
|
|
|
}
|
|
|
|
|
2020-01-02 06:52:18 -07:00
|
|
|
if (-not $NoTests) {
|
|
|
|
# Functional tests
|
|
|
|
# The $LastExitCode from MSBuild can't be trusted
|
|
|
|
$failed = $false
|
2020-01-26 15:26:01 -07:00
|
|
|
|
|
|
|
# Run only this test file:
|
|
|
|
# $env:TEST_FILE = "test\functional\foo.lua"
|
2020-01-02 06:52:18 -07:00
|
|
|
cmake --build . --config $cmakeBuildType --target functionaltest -- $cmakeGeneratorArgs 2>&1 |
|
|
|
|
foreach { $failed = $failed -or
|
|
|
|
$_ -match 'functional tests failed with error'; $_ }
|
|
|
|
|
|
|
|
if ($uploadToCodecov) {
|
|
|
|
if ($env:USE_LUACOV -eq 1) {
|
|
|
|
& $env:DEPS_PREFIX\bin\luacov.bat
|
|
|
|
}
|
|
|
|
bash -l /c/projects/neovim/ci/common/submit_coverage.sh functionaltest
|
|
|
|
}
|
|
|
|
if ($failed) {
|
|
|
|
exit $LastExitCode
|
2019-10-08 18:07:42 -07:00
|
|
|
}
|
2018-03-11 15:44:07 -07:00
|
|
|
|
2020-01-02 06:52:18 -07:00
|
|
|
# Old tests
|
|
|
|
# Add MSYS to path, required for e.g. `find` used in test scripts.
|
|
|
|
# But would break functionaltests, where its `more` would be used then.
|
|
|
|
$OldPath = $env:PATH
|
|
|
|
$env:PATH = "C:\msys64\usr\bin;$env:PATH"
|
|
|
|
& "C:\msys64\mingw$bits\bin\mingw32-make.exe" -C $(Convert-Path ..\src\nvim\testdir) VERBOSE=1 ; exitIfFailed
|
|
|
|
$env:PATH = $OldPath
|
2018-03-11 15:44:07 -07:00
|
|
|
|
2020-01-02 06:52:18 -07:00
|
|
|
if ($uploadToCodecov) {
|
|
|
|
bash -l /c/projects/neovim/ci/common/submit_coverage.sh oldtest
|
|
|
|
}
|
2018-03-11 15:44:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
# Build artifacts
|
|
|
|
cpack -G ZIP -C RelWithDebInfo
|
|
|
|
if ($env:APPVEYOR_REPO_TAG_NAME -ne $null) {
|
|
|
|
cpack -G NSIS -C RelWithDebInfo
|
|
|
|
}
|