Skip to content

Commit c66cc27

Browse files
committed
Merge pull request open-source-parsers#249 from cdunn2001/master
Merge appveyor changes into 0.y.z
2 parents db7ad75 + 441f8cd commit c66cc27

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

appveyor.yml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# This is a comment.
2+
3+
version: build.{build}
4+
5+
os: Windows Server 2012 R2
6+
7+
clone_folder: c:\projects\jsoncpp
8+
9+
platform:
10+
- Win32
11+
- x64
12+
13+
configuration:
14+
- Debug
15+
- Release
16+
17+
# scripts to run before build
18+
before_build:
19+
- echo "Running cmake..."
20+
- cd c:\projects\jsoncpp
21+
- cmake --version
22+
- if %PLATFORM% == Win32 cmake .
23+
- if %PLATFORM% == x64 cmake -G "Visual Studio 12 2013 Win64" .
24+
25+
build:
26+
project: jsoncpp.sln # path to Visual Studio solution or project
27+
28+
deploy:
29+
provider: GitHub
30+
auth_token:
31+
secure: K2Tp1q8pIZ7rs0Ot24ZMWuwr12Ev6Tc6QkhMjGQxoQG3ng1pXtgPasiJ45IDXGdg
32+
on:
33+
branch: master
34+
appveyor_repo_tag: true

0 commit comments

Comments
 (0)