forked from krac/NGitLab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
52 lines (40 loc) · 1.15 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
# configuration for "master" branch
# build in Release mode and deploy to Azure
-
branches:
only:
- master
assembly_info:
patch: false
configuration: Release
build_script:
- ps: .\build.ps1
deploy:
provider: NuGet
api_key:
secure: L12xtuaeiigr5AHCfz0Qd3PrnssYxA1IC819hTmi+pxebwOFoZT4wQGYEq1C9lsH
skip_symbols: false
symbol_server: # remove to push symbols to SymbolSource.org
artifact: /.*\.nupkg/
test: off
skip_tags: true
cache:
- src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
# configuration for all branches except master
# build in Release mode but not deployed
-
branches:
except:
- master
configuration: Release
build_script:
- ps: .\build.ps1
test: off
skip_tags: true
cache:
- src\packages -> **\packages.config # preserve "packages" directory in the root of build folder but will reset it if packages.config is modified
# "fall back" configuration for all other branches
# no "branches" section defined
# do not deploy at all
-
configuration: Debug