12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- version: '{build}'
- clone_folder: c:\projects\open62541
- skip_branch_with_pr: true
- environment:
- global:
- APPVEYOR_CACHE_ENTRY_ZIP_ARGS: -t7z -m0=lzma -mx=9
- matrix:
- - CC_NAME: Visual Studio 9 2008
- CC_SHORTNAME: vs2008
- GENERATOR: Visual Studio 9 2008
- FORCE_CXX: ON
- - CC_NAME: Visual Studio 12 2013
- CC_SHORTNAME: vs2013
- GENERATOR: Visual Studio 12 2013
- FORCE_CXX: OFF
- 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
-
- init:
- - git config --global core.autocrlf input
- install:
- - set PATH=C:\Users\appveyor\AppData\Roaming\Python\Scripts;%PATH%
- - ps: '& "./tools/appveyor/install.ps1"'
- 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
|