X-Git-Url: http://git.cascardo.eti.br/?a=blobdiff_plain;f=appveyor.yml;h=24a2814b1ff438223c84c26b80a298d485cef65e;hb=1589ee5ae97c3f71c50413db64ddd0546daeecc0;hp=a14f0fc508ea410e93c154380dd5a3e278c5446c;hpb=274231631a1a2c07b4acea0e8e8b23afd0d520c0;p=cascardo%2Fovs.git diff --git a/appveyor.yml b/appveyor.yml index a14f0fc50..24a2814b1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -15,9 +15,9 @@ init: Invoke-WebRequest $source -OutFile $destination - $source = "http://slproweb.com/download/Win32OpenSSL-1_0_1L.exe" + $source = "https://slproweb.com/download/Win32OpenSSL-1_0_2f.exe" - $destination = "C:\ovs-build-downloads\Win32OpenSSL-1_0_1L.exe" + $destination = "C:\ovs-build-downloads\Win32OpenSSL-1_0_2f.exe" Invoke-WebRequest $source -OutFile $destination @@ -27,17 +27,19 @@ init: cd C:\ovs-build-downloads - .\Win32OpenSSL-1_0_1L.exe /silent /verysilent /sp- /suppressmsgboxes + .\Win32OpenSSL-1_0_2f.exe /silent /verysilent /sp- /suppressmsgboxes Start-Sleep -s 30 cd C:\openvswitch + python -m pip install six --disable-pip-version-check + build_script: - '"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd"' - C:\MinGW\msys\1.0\bin\bash -lc "echo \"C:/MinGW /mingw\" > /etc/fstab" - C:\MinGW\msys\1.0\bin\bash -lc "cp /c/pthreads-win32/Pre-built.2/dll/x86/*.dll /c/openvswitch/." - C:\MinGW\msys\1.0\bin\bash -lc "mv /bin/link.exe /bin/link_copy.exe" - C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && ./boot.sh" -- C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && ./configure CC=build-aux/cccl LD=\"`which link`\" LIBS=-lws2_32 --with-pthread=C:/pthreads-win32/Pre-built.2 --with-openssl=C:/OpenSSL-Win32 --with-vstudioddk=\"Win8.1 Debug\"" +- C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && ./configure CC=build-aux/cccl LD=\"`which link`\" LIBS=\"-lws2_32 -liphlpapi\" --with-pthread=C:/pthreads-win32/Pre-built.2 --with-openssl=C:/OpenSSL-Win32 --with-vstudiotarget=\"Debug\"" - C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && make"