]> git.proxmox.com Git - mirror_ovs.git/blame - appveyor.yml
nx-match: Add functions for raw decoding and encoding of OXM.
[mirror_ovs.git] / appveyor.yml
CommitLineData
d8a24927
GS
1version: 1.0.{build}
2branches:
3 only:
4 - master
5clone_folder: C:\openvswitch
6init:
7- ps: >-
8 mkdir C:\pthreads-win32
9
10 mkdir C:\ovs-build-downloads
11
12 $source = "ftp://sourceware.org/pub/pthreads-win32/pthreads-w32-2-9-1-release.zip"
13
14 $destination = "C:\pthreads-win32\pthreads-win32.zip"
15
16 Invoke-WebRequest $source -OutFile $destination
17
8f1beba7 18 $source = "https://slproweb.com/download/Win32OpenSSL-1_0_2e.exe"
d8a24927 19
8f1beba7 20 $destination = "C:\ovs-build-downloads\Win32OpenSSL-1_0_2e.exe"
d8a24927
GS
21
22 Invoke-WebRequest $source -OutFile $destination
23
24 cd C:\pthreads-win32
25
26 7z x C:\pthreads-win32\pthreads-win32.zip
27
28 cd C:\ovs-build-downloads
29
8f1beba7 30 .\Win32OpenSSL-1_0_2e.exe /silent /verysilent /sp- /suppressmsgboxes
d8a24927
GS
31
32 Start-Sleep -s 30
33
34 cd C:\openvswitch
35
36build_script:
37- '"C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\VsDevCmd"'
38- C:\MinGW\msys\1.0\bin\bash -lc "echo \"C:/MinGW /mingw\" > /etc/fstab"
39- C:\MinGW\msys\1.0\bin\bash -lc "cp /c/pthreads-win32/Pre-built.2/dll/x86/*.dll /c/openvswitch/."
40- C:\MinGW\msys\1.0\bin\bash -lc "mv /bin/link.exe /bin/link_copy.exe"
41- C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && ./boot.sh"
d183efc2 42- 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\""
d8a24927 43- C:\MinGW\msys\1.0\bin\bash -lc "cd /c/openvswitch && make"