forked from tanathos/ClippyVS
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathazure-pipelines.yml
198 lines (178 loc) · 6.29 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
name: '3.1$(rev:.r)'
trigger:
- main
- feature/*
pr:
- main
pool:
vmImage: 'windows-latest'
demands: npm
stages:
- stage: 'Build'
displayName: 'Build'
jobs:
- job:
displayName: 'Build on Windows'
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- script: |
npm run initdev
displayName: 'Install Node dependencies'
- powershell: |
$vswhereLatest = "https://github.com/Microsoft/vswhere/releases/latest/download/vswhere.exe"
$vswherePath = "$(Build.SourcesDirectory)\BuildTasks\PublishVSExtension\tools\vswhere.exe"
remove-item $vswherePath
invoke-webrequest $vswhereLatest -OutFile $vswherePath
test-path $vswherePath -PathType Leaf
displayName: 'Grab the latest version of vswehere.exe'
- task: Npm@1
displayName: 'Build the extension'
inputs:
command: custom
verbose: false
customCommand: 'run build'
- task: SnykSecurityScan@0
inputs:
testType: 'app'
monitorOnBuild: false
failOnIssues: true
projectName: 'azure-devops-extension-task'
additionalArguments: '--all-projects --detection-depth=6'
serviceConnectionEndpoint: 'snyk-jessehouwing'
- task: TfxInstaller@3
displayName: 'Use Node CLI for Azure DevOps'
inputs:
version: '0.9.x'
checkLatest: true
- task: PackageAzureDevOpsExtension@3
displayName: 'Package Extension: $(Build.SourcesDirectory)'
name: 'packageStep'
inputs:
rootFolder: '$(Build.SourcesDirectory)'
outputPath: '$(Build.ArtifactStagingDirectory)\vsts-developer-tools-build-tasks.vsix'
publisherId: 'jessehouwing'
extensionId: 'vsts-developer-tools-build-tasks'
extensionTag: '-build'
extensionName: 'Azure DevOps Extension Tasks'
extensionVersion: '$(Build.BuildNumber)'
updateTasksVersion: true
updateTasksVersionType: patch
extensionVisibility: private
- task: PublishPipelineArtifact@1
displayName: 'Publish vsix'
inputs:
publishLocation: pipeline
targetPath: '$(packageStep.Extension.OutputPath)'
artifact: 'vsix'
condition: succeededOrFailed()
- stage: PublishDev
displayName: 'Publish privately'
condition: and(succeeded(), ne(variables['Build.Reason'], 'PullRequest'))
dependsOn: 'Build'
jobs:
- deployment:
environment: Publisher JesseHouwing (privately)
strategy:
runOnce:
deploy:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- task: TfxInstaller@3
displayName: 'Use Node CLI for Azure DevOps'
inputs:
version: '0.9.x'
checkLatest: true
- task: PublishAzureDevOpsExtension@3
name: 'publishDev'
inputs:
connectTo: 'VsTeam'
connectedServiceName: 'Jesse Houwing'
fileType: 'vsix'
vsixFile: '$(Pipeline.Workspace)/vsix/vsts-developer-tools-build-tasks.vsix'
publisherId: 'jessehouwing'
extensionId: 'vsts-developer-tools-build-tasks'
extensionTag: '-dev'
updateTasksVersion: false
extensionVisibility: 'privatepreview'
shareWith: 'jessehouwing-dev'
noWaitValidation: true
- task: IsAzureDevOpsExtensionValid@3
inputs:
connectTo: 'VsTeam'
connectedServiceName: 'Jesse Houwing'
method: 'vsix'
vsixFile: '$(publishDev.Extension.OutputPath)'
- task: PublishPipelineArtifact@1
displayName: 'Publish vsix'
inputs:
publishLocation: pipeline
targetPath: '$(publishDev.Extension.OutputPath)'
artifact: 'dev'
condition: succeededOrFailed()
- stage: PublishProd
displayName: 'Publish publicly to MsDevLabs'
condition: and(succeeded(), eq(variables['Build.SourceBranch'], 'refs/heads/main'))
dependsOn: 'PublishDev'
jobs:
- deployment:
environment: Publisher MsDevLabs (publicly)
strategy:
runOnce:
deploy:
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
- task: TfxInstaller@3
displayName: 'Use Node CLI for Azure DevOps'
inputs:
version: '0.9.x'
checkLatest: true
- task: PublishAzureDevOpsExtension@3
name: 'publishProd'
inputs:
connectTo: 'VsTeam'
connectedServiceName: 'msdevlabs'
fileType: 'vsix'
vsixFile: '$(Pipeline.Workspace)/vsix/vsts-developer-tools-build-tasks.vsix'
publisherId: 'ms-devlabs'
extensionId: 'vsts-developer-tools-build-tasks'
updateTasksVersion: false
extensionVisibility: 'public'
noWaitValidation: true
- task: IsAzureDevOpsExtensionValid@3
inputs:
connectTo: 'VsTeam'
connectedServiceName: 'msdevlabs'
method: 'vsix'
vsixFile: '$(publishProd.Extension.OutputPath)'
- task: PublishPipelineArtifact@1
displayName: 'Publish vsix'
inputs:
publishLocation: pipeline
targetPath: '$(publishProd.Extension.OutputPath)'
artifact: 'prod'
condition: succeededOrFailed()
- task: GitHubRelease@1
inputs:
gitHubConnection: 'GitHub - jessehouwing'
repositoryName: '$(Build.Repository.Name)'
action: 'create'
target: '$(Build.SourceVersion)'
tagSource: 'userSpecifiedTag'
tag: 'v$(Build.BuildNumber)'
title: 'v$(Build.BuildNumber)'
releaseNotesSource: 'inline'
assets: '$(publishProd.Extension.OutputPath)*'
changeLogCompareToRelease: 'lastFullRelease'
changeLogType: 'issueBased'
changeLogLabels: '[{ "state" : "closed" }]'
- task: PublishVisualStudioExtension@3
inputs: