This patch fixes the appveyor build by adding the python version 3 to path as per: https://www.appveyor.com/docs/windows-images-software/#python
We also create a hardlink for python3 in the same directory to ease up scripts which checks for its existence. This patch also bumps the OpenSSL version from 1.0.2n to 1.0.2t. Signed-off-by: Alin Gabriel Serdean <[email protected]> --- appveyor.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index b30122744..ee72a948b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -4,6 +4,8 @@ branches: - master clone_folder: C:\openvswitch init: +- ps: $env:PATH ="C:\Python37;"+$env:PATH +- ps: New-Item -Type HardLink -Path "C:\Python37\python3.exe" -Value "C:\Python37\python.exe" - ps: >- mkdir C:\pthreads-win32 @@ -15,9 +17,9 @@ init: Invoke-WebRequest $source -OutFile $destination - $source = "https://slproweb.com/download/Win32OpenSSL-1_0_2n.exe" + $source = "https://slproweb.com/download/Win32OpenSSL-1_0_2t.exe" - $destination = "C:\ovs-build-downloads\Win32OpenSSL-1_0_2n.exe" + $destination = "C:\ovs-build-downloads\Win32OpenSSL-1_0_2t.exe" Invoke-WebRequest $source -OutFile $destination @@ -27,7 +29,7 @@ init: cd C:\ovs-build-downloads - .\Win32OpenSSL-1_0_2n.exe /silent /verysilent /sp- /suppressmsgboxes + .\Win32OpenSSL-1_0_2t.exe /silent /verysilent /sp- /suppressmsgboxes Start-Sleep -s 30 -- 2.21.0.windows.1 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
