forked from dotnet/docfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
azure-pipelines-stable.yml
201 lines (185 loc) · 5.07 KB
/
azure-pipelines-stable.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
199
200
201
# This YAML is used for the docfx v2 daily pre-release CI (https://dev.azure.com/ceapex/Engineering/_build?definitionId=1743&_a=summary)
pool:
name: 1ES-Pool
demands: ImageOverride -equals MMS2019
variables:
- group: docfx-v2-pipeline-kv
- name: NUGETEXE
value: nuget
steps:
- task: UseDotNet@2
displayName: 'Install .NET Core SDK required for ESRPCodeSigning'
inputs:
packageType: sdk
version: '2.1.811'
- task: UseDotNet@2
displayName: 'Install .NET Core SDK required for docfx'
inputs:
packageType: sdk
version: '5.0.100'
- task: NodeTool@0
displayName: 'Use Node 8.x'
inputs:
versionSpec: 8.x
- task: NuGetToolInstaller@1
displayName: 'Use NuGet'
- task: CmdLine@1
displayName: 'npm install'
inputs:
filename: npm
arguments: install
workingFolder: tools/Deployment
- task: CmdLine@1
displayName: 'tsc compile'
inputs:
filename: node
arguments: '.\node_modules\typescript\bin\tsc'
workingFolder: tools/Deployment
- task: CmdLine@1
displayName: 'gulp build'
inputs:
filename: node
arguments: '.\node_modules\gulp\bin\gulp.js dev:build'
workingFolder: tools/Deployment
- task: UseDotNet@2
displayName: 'Install .NET Core sdk required for ESRPCodeSigning'
inputs:
packageType: sdk
version: '2.1.811'
- task: EsrpCodeSigning@1
displayName: Sign docfx executables and dlls
inputs:
ConnectedServiceName: 'CodeSigning-APEX'
FolderPath: '$(Build.SourcesDirectory)/target/Release'
Pattern: |
**\Microsoft.DocAsCode.*.dll
**\*.exe
UseMinimatch: true
signConfigType: inlineSignParams
inlineOperation: |
[
{
"KeyCode": "CP-230012",
"OperationSetCode": "SigntoolSign",
"parameters": [
{
"parameterName": "OpusName",
"parameterValue": "Microsoft"
},
{
"parameterName": "OpusInfo",
"parameterValue": "http://www.microsoft.com"
},
{
"parameterName": "PageHash",
"parameterValue": "/NPH"
},
{
"parameterName": "TimeStamp",
"parameterValue": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
},
{
"parameterName": "FileDigest",
"parameterValue": "/fd \"SHA256\""
}
],
"ToolName": "sign",
"ToolVersion": "1.0"
},
{
"KeyCode": "CP-230012",
"OperationSetCode": "SigntoolVerify",
"Parameters": [
{
"parameterName": "VerifyAll",
"parameterValue": "/all"
}
],
"ToolName": "sign",
"ToolVersion": "1.0"
}
]
SessionTimeout: '60'
MaxConcurrency: '50'
MaxRetryAttempts: '5'
- task: EsrpCodeSigning@1
displayName: Sign dependent dlls
inputs:
ConnectedServiceName: 'CodeSigning-APEX'
FolderPath: '$(Build.SourcesDirectory)/target/Release'
Pattern: |
**\*.dll
!**\System.*.dll
!**\Microsoft.!(DocAsCode).*.dll
!**\NuGet.*.dll
!**\FSharp.Core.*.dll
UseMinimatch: true
signConfigType: inlineSignParams
inlineOperation: |
[
{
"KeyCode": "CP-231522",
"OperationSetCode": "SigntoolSign",
"parameters": [
{
"parameterName": "OpusName",
"parameterValue": "Microsoft"
},
{
"parameterName": "OpusInfo",
"parameterValue": "http://www.microsoft.com"
},
{
"parameterName": "Append",
"parameterValue": "/as"
},
{
"parameterName": "PageHash",
"parameterValue": "/NPH"
},
{
"parameterName": "TimeStamp",
"parameterValue": "/tr \"http://rfc3161.gtm.corp.microsoft.com/TSS/HttpTspServer\" /td sha256"
},
{
"parameterName": "FileDigest",
"parameterValue": "/fd \"SHA256\""
}
],
"ToolName": "sign",
"ToolVersion": "1.0"
},
{
"KeyCode": "CP-231522",
"OperationSetCode": "SigntoolVerify",
"Parameters": [
{
"parameterName": "VerifyAll",
"parameterValue": "/all"
}
],
"ToolName": "sign",
"ToolVersion": "1.0"
}
]
SessionTimeout: '60'
MaxConcurrency: '50'
MaxRetryAttempts: '5'
- task: CmdLine@1
displayName: 'gulp pack'
inputs:
filename: node
arguments: '.\node_modules\gulp\bin\gulp.js dev:release'
workingFolder: tools/Deployment
env:
AZDEVOPSPAT: $(AzureDevOpsFeedPAT)
- task: PublishBuildArtifacts@1
condition: always()
inputs:
pathtoPublish: 'target\Release\docfx'
artifactName: target
- task: PublishBuildArtifacts@1
condition: always()
inputs:
pathtoPublish: 'test\docfx-seed\_site'
artifactName: docfx-seed-site