-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
appveyor.yml
100 lines (100 loc) · 3.39 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
version: 1.0.{build}-alpha
skip_non_tags: true
branches:
only:
- master
image: Visual Studio 2017
configuration: Release
platform: Any CPU
init:
- ps: >-
if(-not $env:APPVEYOR_PULL_REQUEST_NUMBER) {
$env:is_not_pr = "true";
}
if ($env:APPVEYOR_REPO_TAG -eq "true") {
Update-AppveyorBuild -Version "$($env:APPVEYOR_REPO_TAG_NAME.TrimStart("v"))";
}
dotnet_csproj:
patch: true
file: '**\*.csproj'
version: '{version}'
package_version: '{version}'
assembly_version: '{version}'
file_version: '{version}'
informational_version: '{version}'
before_build:
- cmd: dotnet restore src
build:
project: src/Paillave.Etl.sln
verbosity: minimal
test:
assemblies:
only:
- src\Paillave.EtlTests\bin\Release\netcoreapp2.2\Paillave.EtlTests.dll
- src\Paillave.Etl.TextFileTests\bin\Release\netcoreapp2.2\Paillave.Etl.TextFileTests.dll
- src\Paillave.Etl.XmlFileTests\bin\Release\netcoreapp2.2\Paillave.Etl.XmlFileTests.dll
- src\Paillave.Etl.EntityFrameworkCoreTests\bin\Release\netcoreapp2.2\Paillave.Etl.EntityFrameworkCoreTests.dll
- src\Paillave.Etl.Recipes\bin\Release\netcoreapp2.2\Paillave.Etl.Recipes.dll
artifacts:
- path: src\Paillave.Etl\bin\$(configuration)\*.nupkg
name: Paillave.Etl
- path: src\Paillave.Etl.EntityFrameworkCore\bin\$(configuration)\*.nupkg
name: Paillave.Etl.EntityFrameworkCore
- path: src\Paillave.Etl.ExecutionPlan\bin\$(configuration)\*.nupkg
name: Paillave.Etl.ExecutionPlan
- path: src\Paillave.Etl.TextFile\bin\$(configuration)\*.nupkg
name: Paillave.Etl.TextFile
- path: src\Paillave.Etl.XmlFile\bin\$(configuration)\*.nupkg
name: Paillave.Etl.XmlFile
- path: src\Paillave.Etl.ExcelFile\bin\$(configuration)\*.nupkg
name: Paillave.Etl.ExcelFile
- path: src\Paillave.Etl.SqlServer\bin\$(configuration)\*.nupkg
name: Paillave.Etl.SqlServer
- path: src\Paillave.Etl.Ftp\bin\$(configuration)\*.nupkg
name: Paillave.Etl.Ftp
- path: src\Paillave.Etl.Sftp\bin\$(configuration)\*.nupkg
name: Paillave.Etl.Sftp
deploy:
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl.EntityFrameworkCore
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl.ExecutionPlan
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl.TextFile
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl.ExcelFile
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl.SqlServer
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl.Ftp
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl.Sftp
- provider: NuGet
api_key:
secure: UgPSmSDViCSpE60+tlJDDe+ocxa2hm7ESlbze7yeh1jE0nFfS0QD71I0JipJ3fbG
artifact: Paillave.Etl.XmlFile
notifications:
- provider: Webhook
url: https://webhooks.gitter.im/e/24499395a6cd92120c65
method: POST
on_build_success: true
on_build_failure: true
on_build_status_changed: true