forked from eventflow/EventFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
65 lines (53 loc) · 1.57 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
init:
- ps: git config --global core.autocrlf input
- ps: '[Environment]::SetEnvironmentVariable("LCOW_SUPPORTED", "1", "Machine")'
- ps: Restart-Service docker
version: 1.0.{build}
skip_tags: true
build_script:
- cmd: powershell -NoProfile -ExecutionPolicy unrestricted -Command ".\up_integration-test-env.ps1; .\build.ps1 --bootstrap; .\build.ps1 --Target=All;"
# https://www.appveyor.com/docs/services-databases/
# https://www.appveyor.com/docs/windows-images-software/
image: Visual Studio 2019
environment:
HELPZ_POSTGRESQL_PASS: Password12!
EVENTFLOW_MSSQL_SERVER: (local)\SQL2017
EVENTFLOW_MSSQL_USER: sa
EVENTFLOW_MSSQL_PASS: Password12!
test: off
artifacts:
- path: Build\Packages\*nupkg
services:
- mssql2017
- postgresql101
#on_success:
#- choco install codecov
#- codecov -f "Build\\Reports\\opencover-results.xml"
nuget:
account_feed: false
project_feed: false
disable_publish_on_pr: true
deploy:
- provider: NuGet
api_key:
secure: K8DTQLV0fOMi8cQLuItI4Bd7Aa6qsWSdIb3FRbvWCUPUNzQmD4sKGrP5fkTVmbd3
skip_symbols: false
artifact: /.*\.nupkg/
on:
branch: release-v1
- provider: NuGet
api_key:
secure: K8DTQLV0fOMi8cQLuItI4Bd7Aa6qsWSdIb3FRbvWCUPUNzQmD4sKGrP5fkTVmbd3
skip_symbols: false
artifact: /.*\.snupkg/
on:
branch: release-v1
- provider: GitHub
artifact: /.*\.(nupkg|zip|snupkg)/
auth_token:
secure: f+y+RL1ETsxIbYKlliZrmXpfr1wvEVNhGGEOYyl2K8ryz02WxXL+kLe7pu53Kc8r
tag: v$(appveyor_build_version)-alpha
draft: true
prerelease: false
on:
branch: release-v1