-
Notifications
You must be signed in to change notification settings - Fork 26
/
appveyor.yml
74 lines (56 loc) · 1.79 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
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 2.0.{build}
# branches to build
branches:
# whitelist
only:
- devel
- master
# Do not build on tags (GitHub and BitBucket)
skip_tags: true
# Start builds on tags only (GitHub and BitBucket)
skip_non_tags: true
# Maximum number of concurrent jobs for the project
max_jobs: 1
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2015
# clone directory
clone_folder: c:\projects\APDUPlay
# fetch repository as zip archive
shallow_clone: true # default is "false"
# set clone depth
clone_depth: 5 # clone entire repository history if not defined
# Automatically register private account and/or project AppVeyor NuGet feeds.
nuget:
account_feed: true
project_feed: true
disable_publish_on_pr: true # disable publishing of .nupkg artifacts to
# account/project feeds for pull request builds
#---------------------------------#
# build configuration #
#---------------------------------#
# Platforms to build matrix:
platform:
- x64
- Win32
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
build:
parallel: true # enable MSBuild parallel builds
project: Winscard.sln # path to Visual Studio solution or project
# MSBuild verbosity level
verbosity: normal
#---------------------------------#
# artifacts #
#---------------------------------#
artifacts:
- path: x64\Release\winscard.dll
name: APDUPlay's winscard.dll 64bit
- path: Release\winscard.dll
name: APDUPlay's winscard.dll 32bit