commit 770b9f3c3b2d236ea3e1a480a2b06a9b8846508f parent a7bc3e0f7b253e4aa39955be6745c23a61eab058 Author: James McCoy <jamessan@jamessan.com> Date: Tue, 1 Mar 2022 11:37:50 -0500 Merge pull request #17542 from dundargoc/ci/skip-oldtest-on-windows Diffstat:
| M | ci/build.ps1 | | | 20 | ++++++++++++-------- |
1 file changed, 12 insertions(+), 8 deletions(-)
diff --git a/ci/build.ps1 b/ci/build.ps1 @@ -164,17 +164,21 @@ if (-not $NoTests) { exit $LastExitCode } + # FIXME: These tests freezes on github CI and causes all jobs to fail. + # Comment out until this is fixed. + # 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 - - if ($uploadToCodecov) { - bash -l /c/projects/neovim/ci/common/submit_coverage.sh oldtest - } + + # $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 + + # if ($uploadToCodecov) { + # bash -l /c/projects/neovim/ci/common/submit_coverage.sh oldtest + # } } # Ensure choco's cpack is not in PATH otherwise, it conflicts with CMake's