aboutsummaryrefslogtreecommitdiff
path: root/deps/md4c/appveyor.yml
blob: d4bcaff5c31100a20dc521af0ffad2b3d4b1fee8 (plain)
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
# 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