-
Notifications
You must be signed in to change notification settings - Fork 37
/
FOAzurePipeline.yaml
83 lines (71 loc) · 2.16 KB
/
FOAzurePipeline.yaml
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
pool:
name: Hosted Windows 2019 with VS2019
steps:
- task: NuGetToolInstaller@1
displayName: 'Use NuGet '
inputs:
checkLatest: true
- task: PowerShell@2
displayName: 'Build FabricObserver'
inputs:
targetType: filePath
filePath: './Build-FabricObserver.ps1'
- task: PowerShell@2
displayName: 'Build Nuget Packages - FO'
inputs:
targetType: filePath
filePath: './Build-NugetPackages.ps1'
- task: PublishBuildArtifacts@1
displayName: 'Publish Nuget Packages - FO'
inputs:
PathtoPublish: '$(Build.SourcesDirectory)/bin/Release/FabricObserver/Nugets'
ArtifactName: FabricObserverNugets
- task: PowerShell@2
displayName: 'Build Service Fabric Packages - FO'
inputs:
targetType: filePath
filePath: './Build-SFPkgs.ps1'
- task: PublishBuildArtifacts@1
displayName: 'Publish Service Fabric Packages - FO'
inputs:
PathtoPublish: '$(Build.SourcesDirectory)/bin/Release/FabricObserver/SFPkgs'
ArtifactName: FabricObserverSFPackage
- task: PowerShell@2
displayName: 'Build ClusterObserver'
inputs:
targetType: filePath
filePath: './Build-ClusterObserver.ps1'
enabled: false
- task: PowerShell@2
displayName: 'Build Nuget Packages - CO'
inputs:
targetType: filePath
filePath: './Build-CONugetPackages.ps1'
enabled: false
- task: PublishBuildArtifacts@1
displayName: 'Publish Nuget Packages - CO'
inputs:
PathtoPublish: '$(Build.SourcesDirectory)/bin/Release/ClusterObserver/Nugets'
ArtifactName: ClusterObserverNugets
enabled: false
- task: PowerShell@2
displayName: 'Build Service Fabric Packages - CO'
inputs:
targetType: filePath
filePath: './Build-COSFPkgs.ps1'
enabled: false
- task: PublishBuildArtifacts@1
displayName: 'Publish Service Fabric Packages - CO'
inputs:
PathtoPublish: '$(Build.SourcesDirectory)/bin/Release/ClusterObserver/SFPkgs'
ArtifactName: ClusterObserverSFPackage
enabled: false
- task: VSTest@2
displayName: 'VsTest - FabricObserver Unit Tests'
inputs:
testAssemblyVer2: '$(Parameters.testAssemblyVer2)'
vsTestVersion: 16.0
runTestsInIsolation: false
publishRunAttachments: false
rerunFailedTests: true
enabled: false