forked from open62541/open62541
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
71 lines (61 loc) · 2.67 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: '{build}'
clone_folder: c:\projects\open62541
clone_depth: 20
# Avoid building branch if it is part of a PR and built anyways
skip_branch_with_pr: true
environment:
global:
APPVEYOR_CACHE_ENTRY_ZIP_ARGS: -t7z -m0=lzma -mx=9
matrix:
- CC_NAME: MinGW Makefiles
CC_SHORTNAME: mingw
# We need to redirect stderr to stdout otherwise powershell will fail if there is an output during amalgamation.
# Only use one thread, otherwise appveyor runs out of memory
MAKE: mingw32-make -j1 2>&1
FORCE_CXX: OFF
OUT_DIR_LIB: bin
OUT_DIR_EXAMPLES: bin\examples
- CC_NAME: Visual Studio 9 2008
CC_SHORTNAME: vs2008
MAKE: msbuild /p:ContinueOnError=false /p:StopOnFirstFailure=true open62541.sln
FORCE_CXX: ON
OUT_DIR_LIB: bin\Debug
OUT_DIR_EXAMPLES: bin\examples\Debug
- CC_NAME: Visual Studio 12 2013
CC_SHORTNAME: vs2013
MAKE: msbuild /p:ContinueOnError=false /p:StopOnFirstFailure=true open62541.sln
FORCE_CXX: OFF
OUT_DIR_LIB: bin\Debug
OUT_DIR_EXAMPLES: bin\examples\Debug
- CC_NAME: Visual Studio 14 2015
CC_SHORTNAME: vs2015
MAKE: msbuild /p:ContinueOnError=false /p:StopOnFirstFailure=true open62541.sln
FORCE_CXX: OFF
OUT_DIR_LIB: bin\Debug
OUT_DIR_EXAMPLES: bin\examples\Debug
cache:
- C:\ProgramData\chocolatey\bin -> tools/appveyor/install.ps1
- C:\ProgramData\chocolatey\lib -> tools/appveyor/install.ps1
- C:\tools\vcpkg\installed -> tools/appveyor/install.ps1
#- 'c:\miktex'
init:
- git config --global core.autocrlf input # Attempt to ensure we don't try to convert line endings to Win32 CRLF as this will cause build to fail
install:
- set PATH=C:\Users\appveyor\AppData\Roaming\Python\Scripts;%PATH%
- ps: '& "./tools/appveyor/install.ps1"'
before_build:
# Add installed tools to PATH
- set PATH=C:\Python27;C:\msys64\mingw64\bin;C:\Program Files (x86)\Dr. Memory\bin;C:\Program Files\CMake\bin;%PATH%
# Workaround for CMake not wanting sh.exe on PATH for MinGW
- set PATH=%PATH:C:\Program Files\Git\usr\bin;=%
## Miktex
#- set "PATH=%PATH%;c:\miktex\texmfs\install\miktex\bin;%APPDATA%\Python\Scripts"
## autoinstall latex packages (0=no, 1=autoinstall, 2=ask)
## this adds this to the registry!
#- initexmf --set-config-value [MPM]AutoInstall=1
#- initexmf --update-fndb
build_script:
- ps: '& "./tools/appveyor/build.ps1"'
after_build:
- appveyor PushArtifact %APPVEYOR_BUILD_FOLDER%\open62541-%CC_SHORTNAME%-static.zip
- appveyor PushArtifact %APPVEYOR_BUILD_FOLDER%\open62541-%CC_SHORTNAME%-dynamic.zip