forked from rabbitmq/rabbitmq-dotnet-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
37 lines (29 loc) · 944 Bytes
/
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
version: "5.1.0.{build}"
platform: Any CPU
configuration: Release
skip_tags: true
image: Visual Studio 2017
environment:
BUILDWINRT: true
USINGMONO: false
SNKSECRET:
secure: C8FL0UTKVN8YcMW1wdssabbkSWMIrpJTqgUNeI2NfQw=
cache:
# Note: this must match the $rabbitmq_installer_path value in
# tools\appveyor\install.ps1
- "%HOMEDRIVE%%HOMEPATH%\rabbitmq-server-3.7.4.exe"
install:
- IF DEFINED SNKSECRET (nuget install secure-file -ExcludeVersion)
- IF DEFINED SNKSECRET (secure-file\tools\secure-file -decrypt %APPVEYOR_BUILD_FOLDER%\rabbit.snk.enc -secret %SNKSECRET%) ELSE (ECHO This Is A Pull Request Build)
- IF NOT DEFINED SNKSECRET (copy "rabbit.snk.prbuilds" "rabbit.snk") ELSE (ECHO Using The Release Key File)
- ps: .\tools\appveyor\install.ps1
build_script:
- cmd: .\build.bat
test_script:
- cmd: .\run-test.bat
nuget:
disable_publish_on_pr: true
branches:
only:
- master
- stable