-
Notifications
You must be signed in to change notification settings - Fork 75
Expand file tree
/
Copy pathgeneration-pipeline.yml
More file actions
1188 lines (1164 loc) · 48.4 KB
/
generation-pipeline.yml
File metadata and controls
1188 lines (1164 loc) · 48.4 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
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
# contains an end to end validation pipeline using C# compilation tests for staging beta metadata
trigger: none
pr: none
schedules:
# Minute: 0 → At the start of the hour.
# Hour: 10 → 10:00 AM UTC.
# Day of Month: 1-7,15-21 → On the 1st–7th and 15th–21st.
# Month: * → Every month.
# Weekday: TUE → Only on Tuesdays.
# This cron will run bi-weekly unless the month has 5 Tuesdays, in which case it will skip the 5th Tuesday (won't be bi-weekly that month).
- cron: '0 10 1-7,15-21 * TUE'
displayName: Bi-weekly Tuesday generation (1st and 3rd Tuesday, PST 2am, EST 5am, EAT 3pm)
branches:
include:
- main
always: true
resources:
repositories:
- repository: msgraph-sdk-dotnet
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-sdk-dotnet
ref: main
- repository: msgraph-beta-sdk-dotnet
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-sdk-dotnet
ref: main
- repository: msgraph-sdk-php
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-sdk-php
ref: main
- repository: msgraph-beta-sdk-php
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-sdk-php
ref: main
- repository: msgraph-typescript-typings
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-typescript-typings
ref: main
- repository: msgraph-beta-typescript-typings
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-typescript-typings
ref: main
- repository: msgraph-sdk-java
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-sdk-java
ref: main
- repository: msgraph-beta-sdk-java
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-sdk-java
ref: main
- repository: msgraph-sdk-go
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-sdk-go
ref: main
- repository: msgraph-beta-sdk-go
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-sdk-go
ref: main
- repository: msgraph-sdk-typescript
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-sdk-typescript
ref: main
- repository: msgraph-beta-sdk-typescript
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-sdk-typescript
ref: main
- repository: msgraph-sdk-python
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-sdk-python
ref: main
- repository: msgraph-beta-sdk-python
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-beta-sdk-python
ref: main
- repository: msgraph-metadata
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/msgraph-metadata
- repository: microsoft-graph-docs
type: github
endpoint: microsoftgraph (22)
name: microsoftgraph/microsoft-graph-docs
- repository: kiota
type: github
endpoint: microsoftkiota
name: microsoft/kiota
- repository: Agents-M365Copilot
type: github
endpoint: microsoftkiota
name: microsoft/Agents-M365Copilot
- repository: 1ESPipelineTemplates
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
ref: refs/tags/release
parameters:
- name: v1BranchPrefix
default: v1.0/pipelinebuild
displayName: V1 Branch Prefix
- name: betaBranchPrefix
default: beta/pipelinebuild
displayName: Beta Branch Prefix (should be different than V1)
- name: skipMetadataCaptureAndClean
default: false
displayName: Skip metadata capture and clean
type: boolean
- name: skipOpenApiCaptureAndClean
default: false
displayName: Skip OpenAPI capture and clean
type: boolean
- name: publishChanges
default: true
type: boolean
displayName: Publish changes?
- name: overrideSkipCI
default: false
type: boolean
displayName: Override [skip ci]? Checking this box will generate the SDK PRs
variables:
buildConfiguration: 'Release'
cleanMetadataFileBeta: '$(Build.SourcesDirectory)/msgraph-metadata/clean_beta_metadata/cleanMetadataWithDescriptionsbeta.xml'
cleanMetadataFileV1: '$(Build.SourcesDirectory)/msgraph-metadata/clean_v10_metadata/cleanMetadataWithDescriptionsv1.0.xml'
cleanMetadataFileWithAnnotationsV1: '$(Build.SourcesDirectory)/msgraph-metadata/clean_v10_metadata/cleanMetadataWithDescriptionsAndAnnotationsv1.0.xml'
cleanMetadataFileWithAnnotationsBeta: '$(Build.SourcesDirectory)/msgraph-metadata/clean_beta_metadata/cleanMetadataWithDescriptionsAndAnnotationsbeta.xml'
cleanOpenAPIFileV1: '$(Build.SourcesDirectory)/msgraph-metadata/openapi/v1.0/openapi.yml'
cleanOpenAPIFileBeta: '$(Build.SourcesDirectory)/msgraph-metadata/openapi/beta/openapi.yml'
cleanOpenAPIFileV1OutputPath: '$(Build.SourcesDirectory)/msgraph-metadata/openapi/v1.0/'
cleanOpenAPIFileBetaOutputPath: '$(Build.SourcesDirectory)/msgraph-metadata/openapi/beta/'
cleanMetadataFileV1OutputPath: '$(Build.SourcesDirectory)/msgraph-metadata/clean_v10_metadata/'
cleanMetadataFileBetaOutputPath: '$(Build.SourcesDirectory)/msgraph-metadata/clean_beta_metadata/'
metadataTypeSpecAnnotationsSource: '$(Build.SourcesDirectory)/msgraph-metadata/additions/'
cleanMetadataFolderBeta: 'clean_beta_metadata'
cleanMetadataFolderV1: 'clean_v10_metadata'
cleanOpenAPIFolderBeta: 'clean_beta_openapi'
cleanOpenAPIFolderV1: 'clean_v10_openapi'
rawMetadataFileBeta: '$(Build.SourcesDirectory)/msgraph-metadata/schemas/beta-Prod.csdl'
rawMetadataFileV1: '$(Build.SourcesDirectory)/msgraph-metadata/schemas/v1.0-Prod.csdl'
typewriterDirectory: '$(Build.SourcesDirectory)/typewriter'
kiotaDirectory: '$(Build.SourcesDirectory)/kiota'
typewriterExecutable: '$(typewriterDirectory)/Typewriter'
scriptsDirectory: '$(Build.SourcesDirectory)/MSGraph-SDK-Code-Generator/scripts'
conversionSettingsDirectory: '$(Build.SourcesDirectory)/msgraph-metadata/conversion-settings'
transformScript: '$(Build.SourcesDirectory)/msgraph-metadata/transforms/csdl/preprocess_csdl.xsl'
docsDirectory: '$(Build.SourcesDirectory)/microsoft-graph-docs'
v1Branch: ${{ parameters.v1BranchPrefix }}/$(Build.BuildId)
betaBranch: ${{ parameters.betaBranchPrefix }}/$(Build.BuildId)
publishChanges: ${{ parameters.publishChanges }}
overrideSkipCI: ${{ parameters.overrideSkipCI }}
skipMetadataCaptureAndClean: ${{ parameters.skipMetadataCaptureAndClean }}
skipOpenApiCaptureAndClean: ${{ parameters.skipOpenApiCaptureAndClean }}
phpVersion: 7.2
extends:
template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates
parameters:
sdl:
sourceRepositoriesToScan:
include:
- repository: kiota
exclude:
- repository: msgraph-sdk-dotnet
- repository: msgraph-beta-sdk-dotnet
- repository: msgraph-sdk-php
- repository: msgraph-beta-sdk-php
- repository: msgraph-typescript-typings
- repository: msgraph-beta-typescript-typings
- repository: msgraph-sdk-java
- repository: msgraph-beta-sdk-java
- repository: msgraph-sdk-go
- repository: msgraph-beta-sdk-go
- repository: msgraph-sdk-typescript
- repository: msgraph-beta-sdk-typescript
- repository: msgraph-sdk-python
- repository: msgraph-beta-sdk-python
- repository: msgraph-metadata
- repository: microsoft-graph-docs
- repository: Agents-M365Copilot
- repository: 1ESPipelineTemplates
pool:
name: Azure-Pipelines-1ESPT-ExDShared
vmImage: ubuntu-latest
stages:
- stage: stage_build_and_publish_typewriter
dependsOn: [] # remove the implicit dependency to any previous stage
jobs:
- job: build_and_publish_typewriter
templateContext:
outputs:
- output: pipelineArtifact
targetPath: '$(Build.ArtifactStagingDirectory)'
artifactName: typewriter
steps:
- template: /.azure-pipelines/generation-templates/build-and-publish-typewriter.yml@self
- stage: stage_build_and_publish_kiota
dependsOn: [] # remove the implicit dependency to any previous stage
jobs:
- job: build_and_publish_kiota
templateContext:
outputs:
- output: pipelineArtifact
targetPath: '$(Build.ArtifactStagingDirectory)'
artifactName: kiota
steps:
- template: /.azure-pipelines/generation-templates/build-and-publish-kiota.yml@self
# Downloads the latest public beta metadata. If there are changes, we checkin
# the public metadata into microsoftgraph/msgraph-metadata, and then run the
# metadata through the cleaning and documentation processes before validating
# the results with generated and built .NET code files as a smoke test.
- stage: stage_v1_metadata
dependsOn: stage_build_and_publish_typewriter
condition: |
and(succeeded('stage_build_and_publish_typewriter'),
eq( ${{ parameters.skipMetadataCaptureAndClean }}, false))
jobs:
- job: v1_metadata
templateContext:
outputs:
- output: pipelineArtifact
targetPath: '$(Build.ArtifactStagingDirectory)'
artifactName: $(cleanMetadataFolderV1)
inputs:
- input: pipelineArtifact
buildType: 'current'
artifactName: 'typewriter'
targetPath: '$(Build.SourcesDirectory)/typewriter'
steps:
- template: /.azure-pipelines/generation-templates/capture-metadata.yml@self
parameters:
endpoint: 'v1.0'
inputMetadata: $(rawMetadataFileV1)
outputPath: $(cleanMetadataFileV1OutputPath)
cleanMetadataFile: $(cleanMetadataFileV1)
cleanMetadataFolder: $(cleanMetadataFolderV1)
cleanMetadataFileWithAnnotations: $(cleanMetadataFileWithAnnotationsV1)
metadataTypeSpecAnnotationsSource: $(metadataTypeSpecAnnotationsSource)
# Same description as stage_v1_metadata
- stage: stage_beta_metadata
dependsOn: stage_build_and_publish_typewriter
condition: |
and(succeeded('stage_build_and_publish_typewriter'),
eq( ${{ parameters.skipMetadataCaptureAndClean }}, false))
jobs:
- job: beta_metadata
templateContext:
outputs:
- output: pipelineArtifact
targetPath: '$(Build.ArtifactStagingDirectory)'
artifactName: $(cleanMetadataFolderBeta)
inputs:
- input: pipelineArtifact
buildType: 'current'
artifactName: 'typewriter'
targetPath: '$(Build.SourcesDirectory)/typewriter'
steps:
- template: /.azure-pipelines/generation-templates/capture-metadata.yml@self
parameters:
endpoint: 'beta'
inputMetadata: $(rawMetadataFileBeta)
outputPath: $(cleanMetadataFileBetaOutputPath)
cleanMetadataFile: $(cleanMetadataFileBeta)
cleanMetadataFolder: $(cleanMetadataFolderBeta)
cleanMetadataFileWithAnnotations: $(cleanMetadataFileWithAnnotationsBeta)
metadataTypeSpecAnnotationsSource: $(metadataTypeSpecAnnotationsSource)
- stage: stage_v1_openapi
dependsOn: stage_v1_metadata
condition: and(in(dependencies.stage_v1_metadata.result, 'Succeeded', 'Skipped'), eq( ${{ parameters.skipOpenApiCaptureAndClean }}, false))
jobs:
- template: /.azure-pipelines/generation-templates/capture-openapi.yml@self
parameters:
endpoint: 'v1.0'
outputPath: $(cleanOpenAPIFileV1OutputPath)
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
- stage: stage_beta_openapi
dependsOn: stage_beta_metadata
condition: and(in(dependencies.stage_beta_metadata.result, 'Succeeded', 'Skipped'), eq( ${{ parameters.skipOpenApiCaptureAndClean }}, false))
jobs:
- template: /.azure-pipelines/generation-templates/capture-openapi.yml@self
parameters:
endpoint: 'beta'
outputPath: $(cleanOpenAPIFileBetaOutputPath)
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
# Approval stage for v1 OpenAPI generation. All subsequent stages depending on OpenAPI generation
# will be blocked until approval is granted. Any new stages depending on OpenAPI generation
# should also depend on this approval stage.
- stage: open_api_v1_approval
dependsOn:
- stage_v1_openapi
condition: eq(dependencies.stage_v1_openapi.result, 'Succeeded')
jobs:
- deployment: OpenApiApproval
displayName: 'OpenAPI v1.0 Generation Review'
environment: 'openapi-generation-review'
strategy:
runOnce:
deploy:
steps:
- script: echo "OpenAPI generation approved."
# Approval stage for beta OpenAPI generation. All subsequent stages depending on OpenAPI generation
# will be blocked until approval is granted. Any new stages depending on OpenAPI generation
# should also depend on this approval stage.
- stage: open_api_beta_approval
dependsOn:
- stage_beta_openapi
condition: eq(dependencies.stage_beta_openapi.result, 'Succeeded')
jobs:
- deployment: OpenApiApproval
displayName: 'OpenAPI Beta Generation Review'
environment: 'openapi-generation-review'
strategy:
runOnce:
deploy:
steps:
- script: echo "OpenAPI generation approved."
- stage: stage_csharp_v1_kiota
dependsOn:
- stage_build_and_publish_kiota
- stage_v1_openapi
- open_api_v1_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_v1_approval.result, 'Succeeded'),
in(dependencies.stage_v1_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: csharp_v1_kiota
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderV1)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderV1)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'csharp'
version: ''
repoName: 'msgraph-sdk-dotnet'
baseBranchName: 'main'
branchName: 'kiota/$(v1Branch)'
targetClassName: "BaseGraphServiceClient"
targetNamespace: "Microsoft.Graph"
commitMessagePrefix: "feat(generation): update request builders and models"
customArguments: "-b" # Enable the backing store
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/dotnet-kiota.yml@self
parameters:
repoName: msgraph-sdk-dotnet
- stage: stage_csharp_beta_kiota
dependsOn:
- stage_build_and_publish_kiota
- stage_beta_openapi
- open_api_beta_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_beta_approval.result, 'Succeeded'),
in(dependencies.stage_beta_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: csharp_beta_kiota
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderBeta)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderBeta)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'csharp'
version: 'beta'
repoName: 'msgraph-beta-sdk-dotnet'
baseBranchName: 'main'
branchName: 'kiota/$(betaBranch)'
targetClassName: "BaseGraphServiceClient"
targetNamespace: "Microsoft.Graph.Beta"
commitMessagePrefix: "feat(generation): update request builders and models"
customArguments: "-b" # Enable the backing store
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/dotnet-kiota.yml@self
parameters:
repoName: msgraph-beta-sdk-dotnet
- stage: stage_go_v1
dependsOn:
- stage_build_and_publish_kiota
- stage_v1_openapi
- open_api_v1_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_v1_approval.result, 'Succeeded'),
in(dependencies.stage_v1_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: go_v1
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderV1)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderV1)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'go'
version: ''
repoName: 'msgraph-sdk-go'
branchName: $(v1Branch)
targetClassName: "GraphBaseServiceClient"
targetNamespace: "github.com/microsoftgraph/msgraph-sdk-go/"
customArguments: "-b -e '/me' -e '/me/**'"
commitMessagePrefix: "feat(generation): update request builders and models"
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/go.yml@self
parameters:
repoName: msgraph-sdk-go
- stage: stage_go_beta
dependsOn:
- stage_build_and_publish_kiota
- stage_beta_openapi
- open_api_beta_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_beta_approval.result, 'Succeeded'),
in(dependencies.stage_beta_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: go_beta
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderBeta)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderBeta)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'go'
version: 'beta'
repoName: 'msgraph-beta-sdk-go'
branchName: $(betaBranch)
targetClassName: "GraphBaseServiceClient"
targetNamespace: "github.com/microsoftgraph/msgraph-beta-sdk-go/"
customArguments: "-b -e '/me' -e '/me/**'"
commitMessagePrefix: "feat(generation): update request builders and models"
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/go.yml@self
parameters:
repoName: msgraph-beta-sdk-go
- stage: stage_java_v1_kiota
dependsOn:
- stage_build_and_publish_kiota
- stage_v1_openapi
- open_api_v1_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_v1_approval.result, 'Succeeded'),
in(dependencies.stage_v1_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: java_v1_kiota
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderV1)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderV1)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'java'
version: ''
repoName: 'msgraph-sdk-java'
baseBranchName: 'main'
branchName: '$(v1Branch)'
targetClassName: "BaseGraphServiceClient"
targetNamespace: "com.Microsoft.Graph"
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
customArguments: "-b -e '/me' -e '/me/**'" # Exclude /me/** and enable backing store
commitMessagePrefix: "feat(generation): update request builders and models"
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/java-kiota.yml@self
parameters:
repoName: msgraph-sdk-java
namespacePath: com/microsoft/graph
- stage: stage_java_beta_kiota
dependsOn:
- stage_build_and_publish_kiota
- stage_beta_openapi
- open_api_beta_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_beta_approval.result, 'Succeeded'),
in(dependencies.stage_beta_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: java_beta_kiota
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderBeta)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderBeta)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'java'
version: 'beta'
repoName: 'msgraph-beta-sdk-java'
baseBranchName: 'main'
branchName: '$(betaBranch)'
targetClassName: "BaseGraphServiceClient"
targetNamespace: "com.Microsoft.Graph.Beta"
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
customArguments: "-b -e '/me' -e '/me/**'" # Exclude /me/** and enable backing store
commitMessagePrefix: "feat(generation): update request builders and models"
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/java-kiota.yml@self
parameters:
repoName: msgraph-beta-sdk-java
namespacePath: com/microsoft/graph/beta
- stage: stage_php_v1_kiota
dependsOn:
- stage_build_and_publish_kiota
- stage_v1_openapi
- open_api_v1_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_v1_approval.result, 'Succeeded'),
in(dependencies.stage_v1_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: php_v1_kiota
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderV1)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderV1)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'php'
version: ''
repoName: 'msgraph-sdk-php'
branchName: 'kiota/$(v1Branch)'
targetClassName: "BaseGraphClient"
targetNamespace: 'Microsoft\\Graph\\Generated'
baseBranchName: 'main'
commitMessagePrefix: "feat(generation): update request builders and models"
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/php-kiota.yml@self
parameters:
repoName: msgraph-sdk-php
customArguments: "-b -e '/me' -e '/me/**'" # Exclude /me/** and enable backing store
- stage: stage_php_beta_kiota
dependsOn:
- stage_build_and_publish_kiota
- stage_beta_openapi
- open_api_beta_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_beta_approval.result, 'Succeeded'),
in(dependencies.stage_beta_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: php_beta_kiota
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderBeta)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderBeta)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'php'
version: 'beta'
repoName: 'msgraph-beta-sdk-php'
branchName: 'kiota/$(betaBranch)'
targetClassName: "BaseGraphClient"
targetNamespace: 'Microsoft\\Graph\\Beta\\Generated'
baseBranchName: 'main'
commitMessagePrefix: "feat(generation): update request builders and models"
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/php-kiota.yml@self
parameters:
repoName: msgraph-beta-sdk-php
customArguments: "-b -e '/me' -e '/me/**'" # Exclude /me/** and enable backing store
- stage: stage_typescript_v1
dependsOn:
- stage_build_and_publish_typewriter
- stage_v1_metadata
condition: |
and
(
eq(dependencies.stage_build_and_publish_typewriter.result, 'Succeeded'),
eq(dependencies.open_api_v1_approval.result, 'Succeeded'),
in(dependencies.stage_v1_metadata.result, 'Succeeded', 'Skipped')
)
jobs:
- job: typescript_v1
templateContext:
inputs:
- input: pipelineArtifact
buildType: 'current'
artifactName: 'typewriter'
targetPath: '$(Build.SourcesDirectory)/typewriter'
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanMetadataFolderV1)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanMetadataFolderV1)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation.yml@self
parameters:
language: 'TypeScript'
version: ''
repoName: 'msgraph-typescript-typings'
branchName: $(v1Branch)
cleanMetadataFile: $(cleanMetadataFileV1)
cleanMetadataFolder: $(cleanMetadataFolderV1)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/typescript.yml@self
parameters:
repoName: 'msgraph-typescript-typings'
- stage: stage_typescript_beta
dependsOn:
- stage_build_and_publish_typewriter
- stage_beta_metadata
condition: |
and
(
eq(dependencies.stage_build_and_publish_typewriter.result, 'Succeeded'),
eq(dependencies.open_api_beta_approval.result, 'Succeeded'),
in(dependencies.stage_beta_metadata.result, 'Succeeded', 'Skipped')
)
jobs:
- job: typescript_beta
templateContext:
inputs:
- input: pipelineArtifact
buildType: 'current'
artifactName: 'typewriter'
targetPath: '$(Build.SourcesDirectory)/typewriter'
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanMetadataFolderBeta)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanMetadataFolderBeta)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation.yml@self
parameters:
language: 'TypeScript'
version: 'beta'
repoName: 'msgraph-beta-typescript-typings'
branchName: $(betaBranch)
cleanMetadataFile: $(cleanMetadataFileBeta)
cleanMetadataFolder: $(cleanMetadataFolderBeta)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/typescript.yml@self
parameters:
repoName: 'msgraph-beta-typescript-typings'
- stage: stage_typescript_sdk_v1
dependsOn:
- stage_build_and_publish_kiota
- stage_v1_openapi
- open_api_v1_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_v1_approval.result, 'Succeeded'),
in(dependencies.stage_v1_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: typescript_sdk_v1
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderV1)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderV1)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'typescript'
version: ''
repoName: 'msgraph-sdk-typescript'
baseBranchName: 'main'
branchName: $(v1Branch)
commitMessagePrefix: "feat(generation): update request builders and models"
targetClassName: "GraphBaseServiceClient"
targetNamespace: "github.com/microsoftgraph/msgraph-sdk-typescript/"
customArguments: "-b -e '/me' -e '/me/**'" # Exclude me and enable backing store
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/typescript-sdk.yml@self
parameters:
repoName: msgraph-sdk-typescript
packageName: '@microsoft/msgraph-sdk'
- stage: stage_typescript_sdk_beta
dependsOn:
- stage_build_and_publish_kiota
- stage_beta_openapi
- open_api_beta_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_beta_approval.result, 'Succeeded'),
in(dependencies.stage_beta_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: typescript_sdk_beta
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderBeta)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderBeta)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'typescript'
version: 'beta'
repoName: 'msgraph-beta-sdk-typescript'
baseBranchName: 'main'
branchName: $(betaBranch)
commitMessagePrefix: "feat(generation): update request builders and models"
targetClassName: "GraphBetaBaseServiceClient"
targetNamespace: "github.com/microsoftgraph/msgraph-sdk-typescript/"
customArguments: "-b -e '/me' -e '/me/**'" # Exclude me and enable backing store
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/typescript-sdk.yml@self
parameters:
repoName: msgraph-beta-sdk-typescript
packageName: '@microsoft/msgraph-beta-sdk'
- stage: stage_python_v1
dependsOn:
- stage_build_and_publish_kiota
- stage_v1_openapi
- open_api_v1_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_v1_approval.result, 'Succeeded'),
in(dependencies.stage_v1_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: python_v1
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderV1)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderV1)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'python'
version: ''
repoName: 'msgraph-sdk-python'
branchName: $(v1Branch)
targetClassName: "BaseGraphServiceClient"
targetNamespace: "msgraph.generated"
customArguments: "-b -e '/me' -e '/me/**'" # Exclude me and enable backing store
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
commitMessagePrefix: "feat(generation): update request builders and models"
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/python.yml@self
parameters:
repoName: msgraph-sdk-python
baseDirectory: msgraph
- stage: stage_python_beta
dependsOn:
- stage_build_and_publish_kiota
- stage_beta_openapi
- open_api_beta_approval
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
eq(dependencies.open_api_beta_approval.result, 'Succeeded'),
in(dependencies.stage_beta_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: python_beta
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderBeta)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderBeta)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'python'
version: 'beta'
repoName: 'msgraph-beta-sdk-python'
branchName: $(betaBranch)
targetClassName: "BaseGraphServiceClient"
targetNamespace: "msgraph_beta.generated"
customArguments: "-b -e '/me' -e '/me/**'"
cleanMetadataFolder: $(cleanOpenAPIFolderBeta)
commitMessagePrefix: "feat(generation): update request builders and models"
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/python.yml@self
parameters:
repoName: msgraph-beta-sdk-python
baseDirectory: msgraph_beta
- stage: stage_agents_m365copilot_csharp_v1
dependsOn:
- stage_build_and_publish_kiota
- stage_v1_openapi
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
in(dependencies.stage_v1_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: csharp_v1_agents_m365copilot
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderV1)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderV1)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'csharp'
version: 'v1'
orgName: 'microsoft'
repoName: 'Agents-M365Copilot'
baseBranchName: 'main'
branchName: 'ccs-dotnet/$(v1Branch)'
targetClassName: "BaseAgentsM365CopilotServiceClient"
targetNamespace: "Microsoft.Agents.M365Copilot"
commitMessagePrefix: "feat(generation): update request builders and models for dotnet v1"
customArguments: "-i '**/copilot/**'" # include only copilot paths
cleanMetadataFolder: $(cleanOpenAPIFolderV1)
pathExclusionArguments: ''
languageSpecificSteps:
- template: /.azure-pipelines/generation-templates/dotnet-kiota.yml@self
parameters:
repoName: 'Agents-M365Copilot/dotnet'
packageName: Microsoft.Agents.M365Copilot
- stage: stage_agents_m365copilot_csharp_beta
dependsOn:
- stage_build_and_publish_kiota
- stage_beta_openapi
condition: |
and
(
eq(dependencies.stage_build_and_publish_kiota.result, 'Succeeded'),
in(dependencies.stage_beta_openapi.result, 'Succeeded', 'Skipped')
)
jobs:
- job: csharp_beta_agents_m365copilot
templateContext:
inputs:
- input: pipelineArtifact
displayName: 'Downloading metadata from artifacts'
buildType: 'current'
artifactName: $(cleanOpenAPIFolderBeta)
targetPath: '$(Build.SourcesDirectory)/msgraph-metadata/$(cleanOpenAPIFolderBeta)'
- input: pipelineArtifact
buildType: 'current'
artifactName: 'kiota'
targetPath: '$(kiotaDirectory)'
steps:
- template: /.azure-pipelines/generation-templates/language-generation-kiota.yml@self
parameters:
language: 'csharp'
version: 'beta'
orgName: 'microsoft'
repoName: 'Agents-M365Copilot'
baseBranchName: 'main'