-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathCLITest.yml
More file actions
1907 lines (1861 loc) · 64.4 KB
/
CLITest.yml
File metadata and controls
1907 lines (1861 loc) · 64.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
# USER_Target
# "" / all / ALL: main repo and all extensions
# main: main repo
# extensions: ALL extensions
# vm ext-account: certain targets
name: CLI TEST RUN ${{ parameters.userTarget }} ${{ parameters.userLive }} ${{ parameters.userUsername }} $(Date:yyyyMMdd)$(Rev:.r)
trigger:
branches:
exclude:
- '*'
variables:
- template: ${{ variables.Pipeline.Workspace }}/.azure-pipelines/templates/variables.yml
parameters:
- name: maxParallel
displayName: Max Parallel Count
type: number
default: 5
- name: pythonVersion
displayName: Python Version
type: string
default: '3.12'
- name: staticWebUrl
displayName: Static Web URL
type: string
default: 'https://clilivetestsa.z13.web.core.windows.net/'
- name: userBranch
displayName: User Branch
type: string
default: 'live-test'
- name: userBranchExt
displayName: User Branch for Extensions
type: string
default: 'main'
- name: userLive
displayName: User Live Test Flag
type: string
default: '--live'
- name: userParallelism
displayName: User Parallelism
type: number
default: 8
- name: userRepo
displayName: User Repo
type: string
default: 'https://github.com/Azure/azure-cli.git'
- name: userRepoExt
displayName: User Repo for Extensions
type: string
default: 'https://github.com/Azure/azure-cli-extensions.git'
- name: userTarget
displayName: User Target
type: string
default: 'all'
- name: userToken
displayName: User Token
type: string
default: ' '
- name: userUsername
displayName: User Username
type: string
default: ' '
#schedules:
#- cron: "0 18 * * 5"
# displayName: Weekly Friday test
# branches:
# include:
# - CLITest
# always: true
stages:
# Azure DevOps limits the number of jobs to 256, so it must be split according to the platform and placed in different stages.
- stage: TestUbuntu
displayName: Live Test on Ubuntu latest
condition: succeededOrFailed()
jobs:
- job: LiveTest
displayName: Live Test
# Sometimes the live test will be stuck forever, so the timeout cannot be set to 0, it is recommended to set it to twice the maximum time
timeoutInMinutes: 1200
strategy:
# If the maxParallel is too large, the resource group will reach the limit of 980, so it is recommended that the maxParallel should not exceed 30.
maxParallel: ${{ parameters.maxParallel }}
matrix:
acr:
Target: acr
acs:
Target: acs
advisor:
Target: advisor
ams:
Target: ams
apim:
Target: apim
appconfig:
Target: appconfig
appservice:
Target: appservice
aro:
Target: aro
backup:
Target: backup
batch:
Target: batch
batchai:
Target: batchai
billing:
Target: billing
botservice:
Target: botservice
cdn:
Target: cdn
cloud:
Target: cloud
cognitiveservices:
Target: cognitiveservices
config:
Target: config
configure:
Target: configure
consumption:
Target: consumption
container:
Target: container
cosmosdb:
Target: cosmosdb
databoxedge:
Target: databoxedge
#deploymentmanager:
# Target: deploymentmanager
dla:
Target: dla
dls:
Target: dls
dms:
Target: dms
eventgrid:
Target: eventgrid
eventhubs:
Target: eventhubs
extension:
Target: extension
feedback:
Target: feedback
find:
Target: find
hdinsight:
Target: hdinsight
horizondb:
Target: horizondb
identity:
Target: identity
iot:
Target: iot
keyvault:
Target: keyvault
kusto:
Target: kusto
lab:
Target: lab
managedservices:
Target: managedservices
maps:
Target: maps
marketplaceordering:
Target: marketplaceordering
monitor:
Target: monitor
mysql:
Target: mysql
#natgateway:
# Target: natgateway
netappfiles:
Target: netappfiles
network:
Target: network
policyinsights:
Target: policyinsights
postgresql:
Target: postgresql
privatedns:
Target: privatedns
profile:
Target: profile
rdbms:
Target: rdbms
redis:
Target: redis
relay:
Target: relay
resource:
Target: resource
role:
Target: role
search:
Target: search
security:
Target: security
servicebus:
Target: servicebus
serviceconnector:
Target: serviceconnector
servicefabric:
Target: servicefabric
signalr:
Target: signalr
sql:
Target: sql
sqlvm:
Target: sqlvm
storage:
Target: storage
synapse:
Target: synapse
util:
Target: util
vm:
Target: vm
ext-account:
Target: ext-account
ext-acrquery:
Target: ext-acrquery
ext-acrtransfer:
Target: ext-acrtransfer
ext-ad:
Target: ext-ad
ext-adp:
Target: ext-adp
ext-aem:
Target: ext-aem
ext-ai-examples:
Target: ext-ai-examples
ext-aks-preview:
Target: ext-aks-preview
ext-alertsmanagement:
Target: ext-alertsmanagement
#ext-alias:
# Target: ext-alias
ext-amg:
Target: ext-amg
ext-application-insights:
Target: ext-application-insights
ext-appservice-kube:
Target: ext-appservice-kube
#ext-attestation:
# Target: ext-attestation
ext-authV2:
Target: ext-authV2
ext-automanage:
Target: ext-automanage
ext-automation:
Target: ext-automation
ext-azure-firewall:
Target: ext-azure-firewall
ext-bastion:
Target: ext-bastion
ext-billing-benefits:
Target: ext-billing-benefits
ext-blockchain:
Target: ext-blockchain
ext-blueprint:
Target: ext-blueprint
ext-change-analysis:
Target: ext-change-analysis
ext-cli-translator:
Target: ext-cli-translator
#ext-cloudservice:
# Target: ext-cloudservice
ext-communication:
Target: ext-communication
ext-confcom:
Target: ext-confcom
ext-confidentialledger:
Target: ext-confidentialledger
ext-confluent:
Target: ext-confluent
ext-connectedk8s:
Target: ext-connectedk8s
ext-connectedmachine:
Target: ext-connectedmachine
ext-connectedvmware:
Target: ext-connectedvmware
ext-connection-monitor-preview:
Target: ext-connection-monitor-preview
ext-containerapp:
Target: ext-containerapp
#ext-containerapp-preview:
# Target: ext-containerapp-preview
ext-cosmosdb-preview:
Target: ext-cosmosdb-preview
ext-costmanagement:
Target: ext-costmanagement
ext-custom-providers:
Target: ext-custom-providers
ext-databox:
Target: ext-databox
ext-databricks:
Target: ext-databricks
ext-datadog:
Target: ext-datadog
ext-datafactory:
Target: ext-datafactory
ext-datamigration:
Target: ext-datamigration
ext-dataprotection:
Target: ext-dataprotection
ext-datashare:
Target: ext-datashare
ext-db-up:
Target: ext-db-up
ext-desktopvirtualization:
Target: ext-desktopvirtualization
#ext-dev-spaces:
# Target: ext-dev-spaces
ext-devcenter:
Target: ext-devcenter
ext-diskpool:
Target: ext-diskpool
ext-dms-preview:
Target: ext-dms-preview
ext-dnc:
Target: ext-dnc
ext-dns-resolver:
Target: ext-dns-resolver
ext-dynatrace:
Target: ext-dynatrace
ext-edgeorder:
Target: ext-edgeorder
ext-elastic:
Target: ext-elastic
ext-elastic-san:
Target: ext-elastic-san
#ext-eventgrid:
# Target: ext-eventgrid
#ext-express-route-cross-connection:
# Target: ext-express-route-cross-connection
ext-fleet:
Target: ext-fleet
ext-fluid-relay:
Target: ext-fluid-relay
ext-footprint:
Target: ext-footprint
ext-front-door:
Target: ext-front-door
#ext-functionapp:
# Target: ext-functionapp
ext-guestconfig:
Target: ext-guestconfig
#ext-hack:
# Target: ext-hack
ext-hardware-security-modules:
Target: ext-hardware-security-modules
ext-healthbot:
Target: ext-healthbot
ext-healthcareapis:
Target: ext-healthcareapis
ext-hpc-cache:
Target: ext-hpc-cache
#ext-image-copy-extension:
# Target: ext-image-copy-extension
ext-image-gallery:
Target: ext-image-gallery
ext-import-export:
Target: ext-import-export
ext-init:
Target: ext-init
ext-interactive:
Target: ext-interactive
ext-internet-analyzer:
Target: ext-internet-analyzer
ext-ip-group:
Target: ext-ip-group
ext-k8s-configuration:
Target: ext-k8s-configuration
ext-k8s-extension:
Target: ext-k8s-extension
#ext-kusto:
# Target: ext-kusto
ext-load:
Target: ext-load
ext-log-analytics:
Target: ext-log-analytics
ext-log-analytics-solution:
Target: ext-log-analytics-solution
ext-logic:
Target: ext-logic
ext-logz:
Target: ext-logz
ext-maintenance:
Target: ext-maintenance
ext-managedccfs:
Target: ext-managedccfs
ext-managementpartner:
Target: ext-managementpartner
ext-mesh:
Target: ext-mesh
ext-mixed-reality:
Target: ext-mixed-reality
ext-mobile-network:
Target: ext-mobile-network
ext-monitor-control-service:
Target: ext-monitor-control-service
ext-netappfiles-preview:
Target: ext-netappfiles-preview
ext-network-manager:
Target: ext-network-manager
ext-next:
Target: ext-next
ext-nginx:
Target: ext-nginx
ext-notification-hub:
Target: ext-notification-hub
ext-nsp:
Target: ext-nsp
ext-offazure:
Target: ext-offazure
ext-orbital:
Target: ext-orbital
ext-peering:
Target: ext-peering
ext-portal:
Target: ext-portal
ext-powerbidedicated:
Target: ext-powerbidedicated
ext-providerhub:
Target: ext-providerhub
ext-purview:
Target: ext-purview
ext-quantum:
Target: ext-quantum
ext-quota:
Target: ext-quota
#ext-rdbms-connect:
# Target: ext-rdbms-connect
ext-redisenterprise:
Target: ext-redisenterprise
ext-reservation:
Target: ext-reservation
ext-resource-graph:
Target: ext-resource-graph
ext-resource-mover:
Target: ext-resource-mover
ext-scenario-guide:
Target: ext-scenario-guide
ext-scheduled-query:
Target: ext-scheduled-query
ext-scvmm:
Target: ext-scvmm
ext-securityinsight:
Target: ext-securityinsight
ext-self-help:
Target: ext-self-help
ext-serial-console:
Target: ext-serial-console
ext-serviceconnector-passwordless:
Target: ext-serviceconnector-passwordless
ext-spring:
Target: ext-spring
ext-spring-cloud:
Target: ext-spring-cloud
ext-ssh:
Target: ext-ssh
ext-stack-hci:
Target: ext-stack-hci
ext-staticwebapp:
Target: ext-staticwebapp
ext-storage-blob-preview:
Target: ext-storage-blob-preview
ext-storage-mover:
Target: ext-storage-mover
ext-storage-preview:
Target: ext-storage-preview
ext-storagesync:
Target: ext-storagesync
ext-stream-analytics:
Target: ext-stream-analytics
ext-subscription:
Target: ext-subscription
ext-support:
Target: ext-support
ext-swiftlet:
Target: ext-swiftlet
ext-timeseriesinsights:
Target: ext-timeseriesinsights
ext-traffic-collector:
Target: ext-traffic-collector
#ext-virtual-network-tap:
# Target: ext-virtual-network-tap
ext-virtual-wan:
Target: ext-virtual-wan
ext-vm-repair:
Target: ext-vm-repair
ext-vmware:
Target: ext-vmware
ext-voice-service:
Target: ext-voice-service
#ext-webapp:
# Target: ext-webapp
ext-webpubsub:
Target: ext-webpubsub
pool:
name: ${{ variables.ubuntu_pool }}
steps:
- bash: |
if [[ "${{ parameters.userTarget }}" =~ "$(Target)" || ("${{ parameters.userTarget }}" == "main" && ! "$(Target)" =~ ^ext-.*) || ("${{ parameters.userTarget }}" == "extensions" && "$(Target)" =~ ^ext-.*) || ("${{ parameters.userTarget }}" == "ALL" || "${{ parameters.userTarget }}" == "all" || "${{ parameters.userTarget }}" == "") ]]; then
echo "Match!"
echo "##vso[task.setvariable variable=Match]1"
echo "##vso[task.setvariable variable=platform]ubuntulatest"
else
echo "Not match!"
echo "##vso[task.setvariable variable=Match]0"
fi
- task: UsePythonVersion@0
condition: and(succeededOrFailed(), eq(variables.Match, '1'))
inputs:
versionSpec: '${{ parameters.pythonVersion }}'
addToPath: true
architecture: 'x64'
- task: AzureCLI@2
displayName: 'Run live test'
inputs:
connectedServiceNameARM: $(azure-cli-live-test-bami-connected-service)
scriptType: bash
scriptLocation: inlineScript
inlineScript: |
cd ..
pwd
workDir=$(pwd)
echo "##vso[task.setvariable variable=workDir]$workDir"
ls
# ssh-keygen -f ~/.ssh/id_rsa -t rsa -N ''
git config --global user.email "AzurePipelines"
git config --global user.name "AzurePipelines"
# print variables
echo "PLATFORM: $(PLATFORM)"
echo "USER_TARGET: ${{ parameters.userTarget }}"
echo "USER_REPO: ${{ parameters.userRepo }}"
echo "USER_REPO_EXT: ${{ parameters.userRepoExt }}"
echo "USER_BRANCH: ${{ parameters.userBranch }}"
echo "USER_BRANCH_EXT: ${{ parameters.userBranchExt }}"
echo "USER_USERNAME: ${{ parameters.userUsername }}"
# Whether commit changes
if [[ "${{ parameters.userUsername }}" != " " && "${{ parameters.userToken }}" != " " ]]; then
REPO="${{ parameters.userRepo }}"
EXT_REPO="${{ parameters.userRepoExt }}"
# Pass username and token so that we can commit changes
git clone -b ${{ parameters.userBranch }} ${REPO:0:8}${{ parameters.userUsername }}:${{ parameters.userToken }}@${REPO:8}
git clone -b ${{ parameters.userBranchExt }} ${EXT_REPO:0:8}${{ parameters.userUsername }}:${{ parameters.userToken }}@${EXT_REPO:8}
else
git clone -b ${{ parameters.userBranch }} ${{ parameters.userRepo }}
git clone -b ${{ parameters.userBranchExt }} ${{ parameters.userRepoExt }}
fi
python -m venv env
source env/bin/activate
# TODO: support pytest-html >= 4.0.0
pip install azdev pytest-json-report pytest-html==3.2.0 pytest-rerunfailures
azdev setup -c azure-cli -r azure-cli-extensions
# Remove ext- prefix
FinalTarget="$(Target)"
if [[ "${FinalTarget}" =~ ^ext-.* ]]; then
echo "It is an extention"
echo $(Target)
FinalTarget=${FinalTarget:4}
azdev extension add ${FinalTarget}
fi
echo ${FinalTarget}
serial_modules="appservice botservice cloud network azure-cli-core azure-cli-telemetry"
# This helps detect issues in CI if a used SDK API version is deleted by the below script.
python $workDir/s/scripts/trim_sdk.py
# Compact aaz folders of modules
python $workDir/s/scripts/compact_aaz.py
az -v
az account set -s $(azure-cli-live-test-bami-sub-id)
# Clean policy
python $workDir/s/scripts/live_test/clean_policy.py
echo "Run tests"
# Whether commit changes
if [[ "${{ parameters.userUsername }}" != " " && "${{ parameters.userToken }}" != " " ]]; then
echo "Commit mode"
azdev test ${FinalTarget} --no-exitfirst -a "-n ${{ parameters.userParallelism }}"
azdev test ${FinalTarget} --live --lf --xml-path test_results.parallel.xml --no-exitfirst -a "-n ${{ parameters.userParallelism }} --json-report --json-report-summary --json-report-file=$(Target).$(platform).report.parallel.json --html=$(Target).$(platform).report.parallel.html --self-contained-html --capture=sys"
elif [[ "$serial_modules" =~ "$FinalTarget" ]]; then
echo "Series mode"
azdev test ${FinalTarget} ${{ parameters.userLive }} --xml-path test_results.sequential.xml --no-exitfirst -a "-n 1 --json-report --json-report-summary --json-report-file=$(Target).$(platform).report.sequential.json --html=$(Target).$(platform).report.sequential.html --self-contained-html --capture=sys"
else
echo "Normal mode"
# Sequential
azdev test ${FinalTarget} ${{ parameters.userLive }} --mark serial --xml-path test_results.sequential.xml --no-exitfirst -a "-n 1 --json-report --json-report-summary --json-report-file=$(Target).$(platform).report.sequential.json --html=$(Target).$(platform).report.sequential.html --self-contained-html --capture=sys"
# Parallel
azdev test ${FinalTarget} ${{ parameters.userLive }} --mark "not serial" --xml-path test_results.parallel.xml --no-exitfirst -a "-n ${{ parameters.userParallelism }} --json-report --json-report-summary --json-report-file=$(Target).$(platform).report.parallel.json --html=$(Target).$(platform).report.parallel.html --self-contained-html --capture=sys"
fi
pwd
ls
# Whether commit changes
if [[ "${{ parameters.userUsername }}" != " " && "${{ parameters.userToken }}" != " " && ! "${{ parameters.userTarget }}" =~ ^ext-.* && "${{ parameters.userTarget }}" != "extensions" && "${{ parameters.userTarget }}" != "" && "${{ parameters.userTarget }}" != "all" && "${{ parameters.userTarget }}" != "ALL" ]]; then
cd azure-cli
git status
git add .
git commit -m "Upload recording files"
git push origin ${{ parameters.userBranch }}
elif [[ "${{ parameters.userUsername }}" != " " && "${{ parameters.userToken }}" != " " && "${{ parameters.userTarget }}" =~ ^ext-.* ]]; then
cd azure-cli-extensions
git status
git add .
git commit -m "Upload recording files"
git push origin ${{ parameters.userBranchExt }}
fi
condition: and(succeededOrFailed(), eq(variables.Match, '1'))
- task: PublishTestResults@2
condition: and(succeededOrFailed(), eq(variables.Match, '1'))
inputs:
testResultsFiles: '$(workDir)/test_results.*.xml'
testRunTitle: 'Azure CLI live test results of $(Target)'
mergeTestResults: true
- task: PublishBuildArtifacts@1
condition: and(succeededOrFailed(), eq(variables.Match, '1'))
inputs:
PathtoPublish: '$(workDir)/$(Target).$(platform).report.sequential.json'
ArtifactName: 'livetest'
publishLocation: 'Container'
- task: PublishBuildArtifacts@1
condition: and(succeededOrFailed(), eq(variables.Match, '1'))
inputs:
PathtoPublish: '$(workDir)/$(Target).$(platform).report.sequential.html'
ArtifactName: 'livetest'
publishLocation: 'Container'
- task: PublishBuildArtifacts@1
condition: and(succeededOrFailed(), eq(variables.Match, '1'))
inputs:
PathtoPublish: '$(workDir)/$(Target).$(platform).report.parallel.json'
ArtifactName: 'livetest'
publishLocation: 'Container'
- task: PublishBuildArtifacts@1
condition: and(succeededOrFailed(), eq(variables.Match, '1'))
inputs:
PathtoPublish: '$(workDir)/$(Target).$(platform).report.parallel.html'
ArtifactName: 'livetest'
publishLocation: 'Container'
- stage: TestMacos
displayName: Live Test on Macos 12
condition: succeededOrFailed()
jobs:
- job: LiveTest
displayName: Live Test
# Sometimes the live test will be stuck forever, so the timeout cannot be set to 0, it is recommended to set it to twice the maximum time
# For 360 minutes (6 hours) on Microsoft-hosted agents with a public project and public repository
timeoutInMinutes: 1200
strategy:
# If the maxParallel is too large, the resource group will reach the limit of 980, so it is recommended that the maxParallel should not exceed 30.
maxParallel: ${{ parameters.maxParallel }}
matrix:
acr:
Target: acr
acs:
Target: acs
advisor:
Target: advisor
ams:
Target: ams
apim:
Target: apim
appconfig:
Target: appconfig
appservice:
Target: appservice
aro:
Target: aro
backup:
Target: backup
batch:
Target: batch
batchai:
Target: batchai
billing:
Target: billing
botservice:
Target: botservice
cdn:
Target: cdn
cloud:
Target: cloud
cognitiveservices:
Target: cognitiveservices
config:
Target: config
configure:
Target: configure
consumption:
Target: consumption
container:
Target: container
cosmosdb:
Target: cosmosdb
databoxedge:
Target: databoxedge
#deploymentmanager:
# Target: deploymentmanager
dla:
Target: dla
dls:
Target: dls
dms:
Target: dms
eventgrid:
Target: eventgrid
eventhubs:
Target: eventhubs
extension:
Target: extension
feedback:
Target: feedback
find:
Target: find
hdinsight:
Target: hdinsight
horizondb:
Target: horizondb
identity:
Target: identity
iot:
Target: iot
keyvault:
Target: keyvault
kusto:
Target: kusto
lab:
Target: lab
managedservices:
Target: managedservices
maps:
Target: maps
marketplaceordering:
Target: marketplaceordering
monitor:
Target: monitor
mysql:
Target: mysql
#natgateway:
# Target: natgateway
netappfiles:
Target: netappfiles
network:
Target: network
policyinsights:
Target: policyinsights
postgresql:
Target: postgresql
privatedns:
Target: privatedns
profile:
Target: profile
rdbms:
Target: rdbms
redis:
Target: redis
relay:
Target: relay
resource:
Target: resource
role:
Target: role
search:
Target: search
security:
Target: security
servicebus:
Target: servicebus
serviceconnector:
Target: serviceconnector
servicefabric:
Target: servicefabric
signalr:
Target: signalr
sql:
Target: sql
sqlvm:
Target: sqlvm
storage:
Target: storage
synapse:
Target: synapse
util:
Target: util
vm:
Target: vm
ext-account:
Target: ext-account
ext-acrquery:
Target: ext-acrquery
ext-acrtransfer:
Target: ext-acrtransfer
ext-ad:
Target: ext-ad
ext-adp:
Target: ext-adp
ext-aem:
Target: ext-aem
ext-ai-examples:
Target: ext-ai-examples
ext-aks-preview:
Target: ext-aks-preview
ext-alertsmanagement:
Target: ext-alertsmanagement
#ext-alias:
# Target: ext-alias
ext-amg:
Target: ext-amg
ext-application-insights:
Target: ext-application-insights
ext-appservice-kube:
Target: ext-appservice-kube
#ext-attestation:
# Target: ext-attestation
ext-authV2:
Target: ext-authV2
ext-automanage:
Target: ext-automanage
ext-automation:
Target: ext-automation
ext-azure-firewall:
Target: ext-azure-firewall
ext-bastion:
Target: ext-bastion
ext-billing-benefits:
Target: ext-billing-benefits
ext-blockchain:
Target: ext-blockchain
ext-blueprint:
Target: ext-blueprint
ext-change-analysis:
Target: ext-change-analysis
ext-cli-translator:
Target: ext-cli-translator
#ext-cloudservice:
# Target: ext-cloudservice
ext-communication:
Target: ext-communication
ext-confcom:
Target: ext-confcom
ext-confidentialledger:
Target: ext-confidentialledger
ext-confluent:
Target: ext-confluent
ext-connectedk8s:
Target: ext-connectedk8s
ext-connectedmachine:
Target: ext-connectedmachine
ext-connectedvmware:
Target: ext-connectedvmware
ext-connection-monitor-preview:
Target: ext-connection-monitor-preview
ext-containerapp:
Target: ext-containerapp
#ext-containerapp-preview:
# Target: ext-containerapp-preview
ext-cosmosdb-preview:
Target: ext-cosmosdb-preview
ext-costmanagement:
Target: ext-costmanagement
ext-custom-providers:
Target: ext-custom-providers
ext-databox:
Target: ext-databox
ext-databricks:
Target: ext-databricks
ext-datadog:
Target: ext-datadog
ext-datafactory:
Target: ext-datafactory
ext-datamigration:
Target: ext-datamigration
ext-dataprotection:
Target: ext-dataprotection
ext-datashare:
Target: ext-datashare
ext-db-up:
Target: ext-db-up
ext-desktopvirtualization:
Target: ext-desktopvirtualization
#ext-dev-spaces:
# Target: ext-dev-spaces
ext-devcenter:
Target: ext-devcenter
ext-diskpool:
Target: ext-diskpool
ext-dms-preview:
Target: ext-dms-preview
ext-dnc:
Target: ext-dnc
ext-dns-resolver:
Target: ext-dns-resolver
ext-dynatrace:
Target: ext-dynatrace
ext-edgeorder:
Target: ext-edgeorder
ext-elastic:
Target: ext-elastic
ext-elastic-san:
Target: ext-elastic-san
#ext-eventgrid:
# Target: ext-eventgrid
#ext-express-route-cross-connection:
# Target: ext-express-route-cross-connection
ext-fleet:
Target: ext-fleet
ext-fluid-relay:
Target: ext-fluid-relay
ext-footprint:
Target: ext-footprint
ext-front-door:
Target: ext-front-door
#ext-functionapp:
# Target: ext-functionapp
ext-guestconfig:
Target: ext-guestconfig
#ext-hack:
# Target: ext-hack
ext-hardware-security-modules:
Target: ext-hardware-security-modules
ext-healthbot:
Target: ext-healthbot
ext-healthcareapis:
Target: ext-healthcareapis
ext-hpc-cache:
Target: ext-hpc-cache
#ext-image-copy-extension:
# Target: ext-image-copy-extension
ext-image-gallery:
Target: ext-image-gallery
ext-import-export:
Target: ext-import-export
ext-init:
Target: ext-init
ext-interactive:
Target: ext-interactive
ext-internet-analyzer:
Target: ext-internet-analyzer
ext-ip-group:
Target: ext-ip-group
ext-k8s-configuration:
Target: ext-k8s-configuration
ext-k8s-extension:
Target: ext-k8s-extension
#ext-kusto:
# Target: ext-kusto
ext-load:
Target: ext-load
ext-log-analytics:
Target: ext-log-analytics
ext-log-analytics-solution:
Target: ext-log-analytics-solution
ext-logic:
Target: ext-logic
ext-logz:
Target: ext-logz
ext-maintenance:
Target: ext-maintenance
ext-managedccfs:
Target: ext-managedccfs
ext-managementpartner:
Target: ext-managementpartner
ext-mesh:
Target: ext-mesh
ext-mixed-reality:
Target: ext-mixed-reality
ext-mobile-network:
Target: ext-mobile-network
ext-monitor-control-service:
Target: ext-monitor-control-service
ext-netappfiles-preview:
Target: ext-netappfiles-preview
ext-network-manager:
Target: ext-network-manager
ext-next:
Target: ext-next
ext-nginx:
Target: ext-nginx
ext-notification-hub:
Target: ext-notification-hub
ext-nsp:
Target: ext-nsp
ext-offazure:
Target: ext-offazure