diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2021-10-01 14:21:33 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2021-10-01 14:21:33 +0200 |
commit | d071b4177c1a3897f4682e245046a45f362b6ac5 (patch) | |
tree | e8af69a24b2b97758d4e7f12a65a93185b9b5890 /appveyor.yml |
Squashed 'deps/md4c/' content from commit 7f05330
git-subtree-dir: deps/md4c
git-subtree-split: 7f0533068b4319d8cb3d0f33ca9aa66a857734a6
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..d4bcaff --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,29 @@ +# YAML definition for Appveyor.com continuous integration. +# See http://www.appveyor.com/docs/appveyor-yml + +version: '{branch}-{build}' + +before_build: + - 'cmake --version' + - 'if "%PLATFORM%"=="x64" cmake -G "Visual Studio 12 Win64" .' + - 'if not "%PLATFORM%"=="x64" cmake -G "Visual Studio 12" .' + +build: + project: md4c.sln + verbosity: detailed + +skip_tags: true + +os: + - Windows Server 2012 R2 + +configuration: + - Debug + - Release + +platform: + - x64 # 64-bit build + - win32 # 32-bit build + +artifacts: + - path: $(configuration)/md2html/md2html.exe |