summaryrefslogtreecommitdiff
path: root/appveyor.yml
diff options
context:
space:
mode:
authorAlin Gabriel Serdean <aserdean@ovn.org>2019-10-09 17:10:08 +0300
committerWilliam Tu <u9012063@gmail.com>2019-10-09 17:20:51 -0700
commit8009785273759827da995f9dde7d638c5f2bf0e5 (patch)
treec3ecdbe5c517375b514f81b1ec53d353861ea8df /appveyor.yml
parent1e9ec310b8c9186e2761079d96c8b2689aca0ba5 (diff)
downloadopenvswitch-8009785273759827da995f9dde7d638c5f2bf0e5.tar.gz
appveyor: Update OpenSSL link and python3 to path
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 <aserdean@ovn.org> Acked-by: Ben Pfaff <blp@ovn.org> Signed-off-by: William Tu <u9012063@gmail.com>
Diffstat (limited to 'appveyor.yml')
-rw-r--r--appveyor.yml8
1 files 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