diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-03-02 21:28:41 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-03-02 21:28:41 +0800 |
commit | bc04c3d1ba532040b19f30ea082194199d9c5711 (patch) | |
tree | 18f183fc66a3a4c455c2d350d0b2b4cfc6650ab6 | |
parent | 4154bf9b59749df0a7e68eec8f7c8fb5f2b7efc9 (diff) | |
download | rneovim-bc04c3d1ba532040b19f30ea082194199d9c5711.tar.gz rneovim-bc04c3d1ba532040b19f30ea082194199d9c5711.tar.bz2 rneovim-bc04c3d1ba532040b19f30ea082194199d9c5711.zip |
revert: "ci(windows): skip oldtest on windows until failing tests are fixed"
This reverts commit 07d3fb6e3b5f9f10b24103363ea7203deb336f06.
-rw-r--r-- | ci/build.ps1 | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/ci/build.ps1 b/ci/build.ps1 index 01579a96fe..c7c3b3d470 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -164,21 +164,17 @@ 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 |