forked from SpecFlowOSS/SpecFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines.yml
48 lines (41 loc) · 917 Bytes
/
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
name: $(GitAssemblyInformationalVersion)
resources:
- repo: self
clean: "true"
trigger:
batch: true
branches:
include:
- master
paths:
exclude:
- docs/*
- .readthedocs.yml
pr:
branches:
include:
- '*'
paths:
exclude:
- docs/*
- .readthedocs.yml
jobs:
#- template: build.yml
# parameters:
# name: macOS
# artifactFileName: '$(Build.ArtifactStagingDirectory)/SpecFlow-macOS.zip'
# pool:
# name: 'Hosted macOS'
- template: build.yml
parameters:
name: Windows
artifactFileName: '$(Build.ArtifactStagingDirectory)/SpecFlow-Windows.zip'
appInsightsInstrumentationKey: $(AppInsightsInstrumentationKey)
pool:
name: 'Hosted Windows 2019 with VS2019'
- template: build.yml
parameters:
name: Linux
artifactFileName: '$(Build.ArtifactStagingDirectory)/SpecFlow-Linux.zip'
pool:
name: 'Hosted Ubuntu 1604'