-
Notifications
You must be signed in to change notification settings - Fork 0
374 lines (355 loc) · 11.8 KB
/
ci.yml
File metadata and controls
374 lines (355 loc) · 11.8 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
permissions:
contents: read
actions: read
security-events: read
pull-requests: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
LC_ALL: C.UTF-8
LANG: C.UTF-8
CI_DEFER_ARTIFACT_LINK_RESOLUTION: "1"
defaults:
run:
shell: bash
jobs:
pr-labeling:
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
permissions:
contents: read
pull-requests: write
issues: write
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0
fetch-tags: true
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: "20"
- name: Run Entry Check
env:
GH_TOKEN: ${{ github.token }}
run: bash -euo pipefail tools/ci/bin/run.sh pr-labeling
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-pr-labeling
path: artifacts/ci/pr-labeling/
if-no-files-found: error
preflight:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0
fetch-tags: true
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: "20"
- name: Run Entry Check
env:
GH_TOKEN: ${{ github.token }}
CODEQL_DEFAULT_SETUP_GUARDRAIL_TOKEN: ${{ secrets.CODEQL_DEFAULT_SETUP_GUARDRAIL_TOKEN }}
run: bash -euo pipefail tools/ci/bin/run.sh preflight
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-preflight
path: artifacts/ci/preflight/
if-no-files-found: error
docs-links-full:
runs-on: ubuntu-latest
needs: preflight
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh docs-links-full
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-docs-links-full
path: artifacts/ci/docs-links-full/
if-no-files-found: error
versioning-svt:
runs-on: ubuntu-latest
needs: preflight
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
with:
fetch-depth: 0
fetch-tags: true
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh versioning-svt
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-versioning-svt
path: artifacts/ci/versioning-svt/
if-no-files-found: error
version-convergence:
runs-on: ubuntu-latest
needs: preflight
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Run Entry Check (repo-local convergence)
# Remote release/NuGet convergence is enforced in release gates and
# NuGet Online Convergence workflow to avoid main-branch deadlocks
# during the normal sequence merge -> tag/release -> registry propagation.
env:
REQUIRE_REMOTE: "0"
run: bash -euo pipefail tools/ci/bin/run.sh version-convergence
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-version-convergence
path: artifacts/ci/version-convergence/
if-no-files-found: error
naming-snt:
runs-on: ubuntu-latest
needs: preflight
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh naming-snt
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-naming-snt
path: artifacts/ci/naming-snt/
if-no-files-found: error
build:
runs-on: ubuntu-latest
needs: [preflight, versioning-svt, version-convergence, naming-snt]
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh build
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-build
path: artifacts/ci/build/
if-no-files-found: error
api-contract:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh api-contract
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-api-contract
path: artifacts/ci/api-contract/
if-no-files-found: error
pack:
runs-on: ubuntu-latest
needs: [build, versioning-svt]
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh pack
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-pack
path: artifacts/ci/pack/
if-no-files-found: error
consumer-smoke:
runs-on: ubuntu-latest
needs: pack
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Download Pack Artifact
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
name: ci-pack
path: artifacts/ci/pack
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh consumer-smoke
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-consumer-smoke
path: artifacts/ci/consumer-smoke/
if-no-files-found: error
package-backed-tests:
runs-on: ubuntu-latest
needs: pack
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Download Pack Artifact
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4
with:
name: ci-pack
path: artifacts/ci/pack
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh package-backed-tests
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-package-backed-tests
path: artifacts/ci/package-backed-tests/
if-no-files-found: error
security-nuget:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh security-nuget
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-security-nuget
path: artifacts/ci/security-nuget/
if-no-files-found: error
tests-bdd-coverage:
runs-on: ubuntu-latest
needs: build
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh tests-bdd-coverage
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-tests-bdd-coverage
path: artifacts/ci/tests-bdd-coverage/
if-no-files-found: error
summary:
runs-on: ubuntu-latest
needs: [docs-links-full, naming-snt, versioning-svt, version-convergence, api-contract, consumer-smoke, package-backed-tests, security-nuget, tests-bdd-coverage]
steps:
- name: Checkout
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Setup .NET
uses: actions/setup-dotnet@67a3573c9a986a3f9c594539f4ab511d57bb3ce9 # v4
with:
dotnet-version: |
8.0.x
10.0.102
- name: Download Required Artifacts (retry/backoff)
env:
GH_TOKEN: ${{ github.token }}
run: bash tools/ci/bin/download_summary_artifacts.sh "${GITHUB_RUN_ID}"
- name: Run Entry Check
run: bash -euo pipefail tools/ci/bin/run.sh summary
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4
with:
name: ci-summary
path: artifacts/ci/summary/
if-no-files-found: error