-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
41 lines (41 loc) · 1.29 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
init:
- ps: $env:buildVersion = "$env:packageVersion.$env:appveyor_build_number"
- ps: $env:nugetVersion = "$env:packageVersion-beta-$env:appveyor_build_number"
- ps: Update-AppveyorBuild -Version $env:buildVersion
pull_requests:
do_not_increment_build_number: true
assembly_info:
patch: true
file: '**\AssemblyInfo.*'
assembly_version: '$(buildVersion)'
assembly_file_version: '$(buildVersion)'
assembly_informational_version: '$(nugetVersion)'
environment:
REDIS2:
secure: KvidzpujQu2BLGLqVmVwJtkuH09qroHkVz4K1hy7ScvJ+lwjzSQ+XX+U12xnrRmse5evrJC5pylFsb2ZSimFGuav1IHYARQ/wg28RDPsG1EP9kGy/FnlK2ZR2ZuFNxmOXPTYjq0cgljHnofbN2ghyQ==
REDIS: localhost
packageVersion: 1.0.0
install:
- nuget install redis-64 -excludeversion
- redis-64\tools\redis-server.exe --service-install
- redis-64\tools\redis-server.exe --service-start
nuget:
project_feed: true
before_build:
- cmd: nuget restore
build:
project: DemgelRedis.sln
publish_nuget: true
publish_nuget_symbols: true
verbosity: minimal
deploy:
- provider: NuGet
server:
api_key:
secure: 3RjgrzcwsRjZUGEQijEmq/9A8x8y216UK5pR2kU77W4jswZDoczKuj8O+aSgLDLe
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/3d6a267030e921c27097
on_build_success: true
on_build_failure: true
on_build_status_changed: true