forked from Azure/iot-edge-opc-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
27 lines (27 loc) · 821 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
version: 1.0.4.{build}
environment:
matrix:
- proxy: no_zlog
build_args: -p Win32 --skip-unittests
- proxy: no_zlog_x64
build_args: -p x64 --skip-unittests
- proxy: with_openssl
build_args: -p Win32 --skip-unittests --use-openssl
- proxy: with_libwebsockets
build_args: -p Win32 --skip-unittests --use-libwebsockets
- proxy: default
build_args: -p Win32 --use-zlog
- proxy: default_x64
build_args: -p x64 --use-zlog
image: Visual Studio 2017
install:
- git submodule update --init
- ps: Start-FileDownload 'https://slproweb.com/download/Win32OpenSSL-1_0_2n.exe'
- cmd /c Win32OpenSSL-1_0_2n.exe /silent /verysilent /sp- /suppressmsgboxes
build:
build_script:
- bld\build.cmd -c %build_args%
cache:
- C:\OpenSSL-Win32
matrix:
fast_finish: true