forked from vovkos/doxyrest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
77 lines (59 loc) · 1.68 KB
/
.appveyor.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#...............................................................................
#
# This file is part of the Doxyrest toolkit.
#
# Doxyrest is distributed under the MIT license.
# For details see accompanying license.txt file,
# the public copy of which is also available at:
# http://tibbo.com/downloads/archive/doxyrest/license.txt
#
#...............................................................................
branches:
only:
- master
image: Visual Studio 2015
init:
- git config --global core.autocrlf input
clone_folder: c:\projects\doxyrest
shallow_clone: true
matrix:
fast_finish: false
platform:
- x64
- x86
configuration:
- Debug
- Release
environment:
matrix:
- TOOLCHAIN: msvc10
- TOOLCHAIN: msvc12
- TOOLCHAIN: msvc14
install:
- call ci\appveyor\set-env.bat %TOOLCHAIN% %PLATFORM%
- call ci\appveyor\install.bat
- git clone --depth 1 https://github.com/vovkos/axl
build_script:
- call ci\appveyor\build.bat
- ps: Add-AppveyorMessage "APPVEYOR_REPO_COMMIT=$env:APPVEYOR_REPO_COMMIT"
test_script:
- ctest -C %CONFIGURATION% --output-on-failure
notifications:
- provider: Webhook
on_build_success: true
on_build_failure: false
url: http://jancy.org:5005/appveyor-ci
artifacts:
- path: $(DOXYREST_PACKAGE_FILE)
name: doxyrest_package
deploy:
description: '$(APPVEYOR_REPO_TAG_NAME)'
provider: GitHub
auth_token:
secure: Fu74ylq5QefgNWwNJ/f9OuEYykWNLRetDgRTED5UhVD6Dczu9btgesmnuvFkp874
artifact: doxyrest_package
force_update: true
on:
appveyor_repo_tag: true
toolchain: msvc10
configuration: Release