1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- 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
- MAKE: mingw32-make -j 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
|