mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
ci(windows): use the provided python from github actions
This will prevent future errors whenever support for a specific python version we rely on is removed.
This commit is contained in:
parent
ecec957125
commit
16d64796f4
11
ci/build.ps1
11
ci/build.ps1
@ -86,19 +86,10 @@ elseif ($compiler -eq 'MSVC') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (-not $NoTests) {
|
if (-not $NoTests) {
|
||||||
# Setup python (use AppVeyor system python)
|
python -m ensurepip
|
||||||
|
|
||||||
# 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
|
python -m pip install pynvim ; exitIfFailed
|
||||||
python3 -m pip install pynvim ; exitIfFailed
|
|
||||||
# Sanity check
|
# Sanity check
|
||||||
python -c "import pynvim; print(str(pynvim))" ; exitIfFailed
|
python -c "import pynvim; print(str(pynvim))" ; exitIfFailed
|
||||||
python3 -c "import pynvim; print(str(pynvim))" ; exitIfFailed
|
|
||||||
|
|
||||||
gem.cmd install --pre neovim
|
gem.cmd install --pre neovim
|
||||||
Get-Command -CommandType Application neovim-ruby-host.bat
|
Get-Command -CommandType Application neovim-ruby-host.bat
|
||||||
|
Loading…
Reference in New Issue
Block a user