forked from PostgreSQLCopyHelper/PostgreSQLCopyHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
93 lines (75 loc) · 1.95 KB
/
azure-pipelines.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
resources:
containers:
- container: postgres_11
image: npgsql/postgres:11
options: '--volume /var/run/postgresql:/var/run/postgresql'
ports:
- 5432:5432
# - container: postgres_10
# image: npgsql/postgres:10
# options: '--volume /var/run/postgresql:/var/run/postgresql'
# ports:
# - 5432:5432
# - container: postgres_9_6
# image: npgsql/postgres:9.6
# options: '--volume /var/run/postgresql:/var/run/postgresql'
# ports:
# - 5432:5432
variables:
buildConfiguration: 'Release'
DOTNET_SDK_VERSION: 3.0.x
jobs:
- job: Linux
pool:
vmImage: 'ubuntu-16.04'
strategy:
matrix:
postgres_11:
postgres_service: postgres_11
# postgres_10:
# postgres_service: postgres_10
# postgres_9_6:
# postgres_service: postgres_9_6
services:
postgres: $[variables['postgres_service']]
steps:
- task: DotNetCoreInstaller@1
displayName: 'Install .NET Core SDK'
inputs:
packageType: 'sdk'
version: '$(DOTNET_SDK_VERSION)'
- task: DotNetCoreCLI@2
displayName: 'Build'
inputs:
command: 'build'
configuration: $(buildConfiguration)
projects: '**/*.csproj'
# - task: DotNetCoreCLI@2
# displayName: 'Test'
# inputs:
# command: 'test'
# configuration: $(buildConfiguration)
# projects: '**/*Test.csproj'
# publishTestResults: true
- job: Windows
pool:
vmImage: 'windows-latest'
steps:
- task: DotNetCoreInstaller@1
displayName: 'Install .NET Core SDK'
inputs:
packageType: 'sdk'
version: '$(DOTNET_SDK_VERSION)'
- task: DotNetCoreCLI@2
displayName: 'Build'
inputs:
command: 'build'
configuration: $(buildConfiguration)
projects: '**/*.csproj'
# - task: DotNetCoreCLI@2
# displayName: 'Test'
# inputs:
# command: 'test'
# configuration: $(buildConfiguration)
# projects: '**/*Test.csproj'
# publishTestResults: true