-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathultimate-pipeline.yml
More file actions
5561 lines (4811 loc) · 198 KB
/
ultimate-pipeline.yml
File metadata and controls
5561 lines (4811 loc) · 198 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
# Change the default BuildId to not include a '.' in the name (use '_' instead)
name: $(Date:yyyyMMdd)-$(Rev:rr)
# master/hotfix branches should always run
trigger:
branches:
include:
- master
- release/*
- hotfix/*
exclude:
- refs/pull/*/head
# Changes in PRs and other branches need to run, if
# - There were any code changes
# - There were any changes to the AzDo or GitLab builds
# They don't need to run if there are changes to
# - Standalone samples
# - Docs
# - Any other non-build related files (but these rarely change, so just suck it up)
pr:
branches:
include:
- '*' # default
paths:
exclude:
- .azure-pipelines/noop-pipeline.yml
- .gitignore
- .github/
- .claude/
- .devcontainer/
- .vscode/
- docs/
- tracer/samples/
- tracer/tools/*.ps*1
- AGENTS.md
- CLAUDE.md
- LICENSE
- NOTICE
- "**/README.md"
schedules:
- cron: "0 3 * * *"
displayName: Daily 3am (UTC) build
branches:
include:
- master
- release/*
- hotfix/*
exclude:
- release/2.x
- release/1.x
always: true
# The name of this schedule is checked from within Nuke, and is used
# to ensure we do a run in which we set DD_TRACE_DEBUG=1 in integration tests
# to catch any debug-specific issues
- cron: "0 4 * * *"
displayName: Daily Debug Run
branches:
include:
- master
always: true
# Global variables
variables:
buildConfiguration: Release
dotnetCoreSdkLatestVersion: 10.0.100
# This is required until we're out of rc.
# After GA we can do a find and replace and get rid of this
dotnetCoreSdkLatestVersionShort: 10.0.100
nativeBuildDotnetSdkVersion: 7.0.306
# These are the Managed DevOps pool names we use
linuxTasksPool: azure-managed-linux-tasks
linuxX64SmokePool: azure-managed-linux-smoke
linuxX64Pool: azure-managed-linux-x64-1
linuxArm64Pool: azure-managed-linux-arm64-1
windowsX64Pool: azure-managed-windows-x64-2
relativeArtifacts: /tracer/src/bin/artifacts
monitoringHome: $(System.DefaultWorkingDirectory)/shared/bin/monitoring-home
artifacts: $(System.DefaultWorkingDirectory)/tracer/src/bin/artifacts
outputDir: $(System.DefaultWorkingDirectory)/artifacts
symbols: $(System.DefaultWorkingDirectory)/tracer/bin/symbols
relativeRunnerTool: tracer/src/bin/runnerTool
relativeRunnerStandalone: tracer/src/bin/runnerStandalone
ddApiKey: $(DD_API_KEY_PROD)
isMainBranch: $[in(variables['Build.SourceBranch'], 'refs/heads/master', 'refs/heads/main')]
isMainOrReleaseBranch: $[or(in(variables['Build.SourceBranch'], 'refs/heads/master', 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/hotfix/'))]
isPullRequest: $[eq(variables['Build.Reason'], 'PullRequest')]
# Only run code coverage when requested
# Coverlet relies on IL rewriting, which currently breaks tests which explictly check the IL
CodeCoverageEnabled: $[eq(variables['run_code_coverage'], 'true')]
DD_DOTNET_TRACER_MSBUILD:
NugetPackageDirectory: $(System.DefaultWorkingDirectory)/packages
relativeNugetPackageDirectory: packages
dotnetToolTag: build-dotnet-tool
Verify_DisableClipboard: true
DiffEngine_Disabled: true
OriginalCommitId: $[coalesce(variables['System.PullRequest.SourceCommitId'], variables['Build.SourceVersion'])]
TESTCONTAINERS_RYUK_DISABLED: true
NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY: true
NUGET_EXPERIMENTAL_CHAIN_BUILD_RETRY_POLICY: 3,1000
# Retry parameters for network operations to improve CI resilency
CURL_RETRY_FLAGS: '--retry 5 --retry-delay 2 --retry-connrefused --connect-timeout 30 --max-time 120'
GIT_RETRY_CONFIG: '-c http.retry=5 -c http.retryDelay=2'
GIT_HTTP_RETRY: 5
GIT_HTTP_RETRY_DELAY: 2
PWSH_MAX_RETRY_COUNT: 5
PWSH_RETRY_INTERVAL_SEC: 2
PWSH_TIMEOUT_SEC: 120
DefaultTimeout: 60
DD_INSTRUMENTATION_TELEMETRY_ENABLED: 0
NUKE_TELEMETRY_OPTOUT: 1
# Include all test frameworks when (variable is set) OR ((running on master/release/hotfix) and (NOT scheduled build)),
IncludeAllTestFrameworks: $[or(eq(variables['run_all_test_frameworks'], 'true'), and(or(in(variables['Build.SourceBranch'], 'refs/heads/master', 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'), startsWith(variables['Build.SourceBranch'], 'refs/heads/hostfix/')), not(eq(variables['Build.Reason'], 'Schedule'))))]
IntegrationTestSampleName: $(TEST_SAMPLE_NAME)
IntegrationTestFilter: $(TEST_FILTER)
DockerComposeProjectName: ddtrace-$(Build.BuildNumber)
# Logger variables
DD_LOGGER_DD_API_KEY: $(DD_API_KEY_PROD)
DD_LOGGER_DD_SERVICE: dd-trace-dotnet
DD_LOGGER_DD_ENV: CI
DD_LOGGER_DD_TRACE_LOG_DIRECTORY: $(System.DefaultWorkingDirectory)/artifacts/build_data/infra_logs
DD_TRACE_DEBUG: $[eq(variables['ForceDebugRun'], 'true')]
DD_LOGGER_TF_BUILD: True
DD_LOGGER_BUILD_BUILDID: $(Build.BuildId)
DD_LOGGER_BUILD_DEFINITIONNAME: $(Build.DefinitionName)
DD_LOGGER_BUILD_SOURCESDIRECTORY: $(Build.SourcesDirectory)
DD_LOGGER_BUILD_REPOSITORY_URI: $(Build.Repository.Uri)
DD_LOGGER_BUILD_SOURCEVERSION: $(Build.SourceVersion)
DD_LOGGER_BUILD_SOURCEBRANCH: $(Build.SourceBranch)
DD_LOGGER_BUILD_SOURCEBRANCHNAME: $(Build.SourceBranchName)
DD_LOGGER_BUILD_SOURCEVERSIONMESSAGE: $(Build.SourceVersionMessage)
DD_LOGGER_BUILD_REQUESTEDFORID: $(Build.RequestedForId)
DD_LOGGER_BUILD_REQUESTEDFOREMAIL: $(Build.RequestedForEmail)
DD_LOGGER_SYSTEM_TEAMFOUNDATIONSERVERURI: $(System.TeamFoundationServerUri)
DD_LOGGER_SYSTEM_TEAMPROJECTID: $(System.TeamProjectId)
DD_LOGGER_SYSTEM_STAGEDISPLAYNAME: $(System.StageDisplayName)
DD_LOGGER_SYSTEM_JOBDISPLAYNAME: $(System.JobDisplayName)
DD_LOGGER_SYSTEM_JOBID: $(System.JobId)
DD_LOGGER_SYSTEM_PULLREQUEST_SOURCEREPOSITORYURI: $[variables['System.PullRequest.SourceRepositoryURI']]
DD_LOGGER_SYSTEM_PULLREQUEST_SOURCECOMMITID: $[variables['System.PullRequest.SourceCommitId']]
DD_LOGGER_SYSTEM_PULLREQUEST_SOURCEBRANCH: $[variables['System.PullRequest.SourceBranch']]
DD_LOGGER_API_KEY_CHECKER_ENABLED: false
DD_LOGGER_DD_TAGS: test.configuration.job:$(System.JobDisplayName)
DD_LOGGER_ENABLED: true
DD_COLLECTOR_CPU_USAGE: true
ToolVersion: 3.41.0
# .NET SDK performance optimization variables
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
DOTNET_CLI_TELEMETRY_OPTOUT: 1
DOTNET_NOLOGO: 1
DOTNET_CLI_UI_LANGUAGE: 'en'
DOTNET_MULTILEVEL_LOOKUP: 0
NUGET_XMLDOC_MODE: 'skip'
# Declare the datadog agent as a resource to be used as a pipeline service
resources:
containers:
# This always does a docker pull to pull the latest agent
- container: dd_agent
image: public.ecr.aws/datadog/agent
ports:
- 8126:8126
env:
DD_API_KEY: $(ddApiKey)
DD_INSIDE_CI: true
# This always uses the local pulled version of the agent
# This avoids hitting docker pull resource limits, but means we periodically need
# to run a docker pull ourselves (which typically happens as part of VMSS updates)
- container: dd_agent_no_pull
image: public.ecr.aws/datadog/agent
localImage: true
ports:
- 8126:8126
env:
DD_API_KEY: $(ddApiKey)
DD_INSIDE_CI: true
# Stages
stages:
# This step grabs the current commit of master, and records it for subsequent stages
# We use it to ensure that we are always running PRs against the same commit, even
# if master is updated while the build is in progress. This guards against CI flakiness
# where the first stages of the build execute against one merge commit, and later stages
# run against another
- stage: merge_commit_id
dependsOn: []
jobs:
- job: fetch
timeoutInMinutes: 60 #default value
pool:
name: $(linuxTasksPool)
steps:
- checkout: none
- bash: |
TARGET_BRANCH=$SYSTEM_PULLREQUEST_TARGETBRANCH
echo "SYSTEM_PULLREQUEST_TARGETBRANCH=$TARGET_BRANCH"
if [[ "$TARGET_BRANCH" == refs/heads/hotfix/* ]] || [[ "$TARGET_BRANCH" == refs/heads/release/* ]]; then
TARGET_BRANCH=$(echo $TARGET_BRANCH| cut -c 11-)
elif [[ "$TARGET_BRANCH" == hotfix/* ]] || [[ "$TARGET_BRANCH" == release/* ]]; then
echo "No need to change the branch name"
else
TARGET_BRANCH=master
fi
echo "Using target branch $TARGET_BRANCH"
rm -rf ./s
git $(GIT_RETRY_CONFIG) clone --quiet --no-checkout --depth 1 --branch $TARGET_BRANCH $BUILD_REPOSITORY_URI ./s
cd s
TARGET_SHA=$(git rev-parse origin/$TARGET_BRANCH)
rm -rf ./s
echo "Using master commit ID $TARGET_SHA"
echo "##vso[task.setvariable variable=sha;isOutput=true]$TARGET_SHA"
echo "##vso[task.setvariable variable=branch;isOutput=true]$TARGET_BRANCH"
failOnStderr: true
displayName: Fetch master id
name: set_sha
- stage: generate_variables
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [generate_variables_job]
- job: generate_variables_job
timeoutInMinutes: 60 #default value
dependsOn: []
pool:
name: $(windowsX64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- powershell: |
tracer/build.ps1 GenerateVariables
displayName: Generate Matrices
name: generate_variables_step
- stage: build_windows_tracer
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
pool:
name: $(windowsX64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- script: tracer\build.cmd BuildTracerHome BuildNativeLoader
displayName: Build tracer home
retryCountOnTaskFailure: 1
- script: tracer\build.cmd CompileTracerNativeTests RunTracerNativeTests CompileNativeLoaderNativeTests RunNativeLoaderNativeTests
displayName: Build and run tracer and native loader native tests
retryCountOnTaskFailure: 1
env:
DD_LOGGER_DD_API_KEY: $(ddApiKey)
- publish: $(monitoringHome)
displayName: Upload Windows tracer home directory
artifact: windows-tracer-home
- publish: $(System.DefaultWorkingDirectory)
displayName: Upload working directory after the managed build
artifact: build-windows-working-directory
- publish: $(System.DefaultWorkingDirectory)/tracer/src/Datadog.Trace.Manual/bin/Release/netcoreapp3.1/Datadog.Trace.Manual.dll
displayName: Upload Datadog.Trace.Manual.dll for external CI
artifact: Datadog.Trace.Manual.dll
- publish: artifacts/build_data/tests
displayName: publish tracer and native loader test results
artifact: build_windows_tracer_unit_tests_results_$(System.JobAttempt)
- stage: build_windows_profiler
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
pool:
name: $(windowsX64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- script: tracer\build.cmd BuildProfilerHome
displayName: Build profiler home
retryCountOnTaskFailure: 1
- script: tracer\build.cmd CompileProfilerNativeTests RunProfilerNativeTests
displayName: Build and run profiler native tests
retryCountOnTaskFailure: 1
env:
DD_LOGGER_DD_API_KEY: $(ddApiKey)
- publish: $(monitoringHome)
displayName: Upload Windows profiler home directory
artifact: windows-profiler-home
- publish: $(symbols)
displayName: Upload Windows profiler symbols
artifact: windows-profiler-symbols
- publish: profiler/build_data/tests
displayName: publish profiler test results
artifact: build_windows_profiler_unit_tests_results_$(System.JobAttempt)
- stage: build_linux_tracer
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
dependsOn: []
strategy:
matrix:
x64:
nativeBaseImage: centos7
managedBaseImage: debian
useNativeSdkVersion: true
artifactSuffix: linux-x64
alpine:
nativeBaseImage: alpine
managedBaseImage: alpine
useNativeSdkVersion: ""
artifactSuffix: linux-musl-x64
pool:
name: $(linuxX64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: $(managedBaseImage)
command: "Clean CompileManagedLoader"
retryCountForRunCommand: 1
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: $(nativeBaseImage)
useNativeSdkVersion: $(useNativeSdkVersion)
command: "BuildNativeTracerHome CompileTracerNativeTests RunTracerNativeTests"
retryCountForRunCommand: 1
apiKey: $(DD_LOGGER_DD_API_KEY)
- template: steps/run-in-docker.yml
parameters:
target: builder
baseImage: $(managedBaseImage)
command: "BuildManagedTracerHome ExtractDebugInfoLinux ValidateNativeTracerGlibcCompatibility"
retryCountForRunCommand: 1
- publish: $(monitoringHome)
displayName: Uploading linux tracer home artifact
artifact: linux-tracer-home-$(artifactSuffix)
- publish: $(System.DefaultWorkingDirectory)
displayName: Upload working directory after the build
artifact: build-$(artifactSuffix)-working-directory
- publish: $(symbols)
displayName: Upload linux tracer symbols
artifact: linux-tracer-symbols-$(artifactSuffix)
- publish: artifacts/build_data/tests
displayName: publish tracer and native loader test results
artifact: build_linux_tracer_unit_tests_results_$(artifactSuffix)_$(System.JobAttempt)
- stage: build_linux_tracer_r2r
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
dependsOn: []
pool:
name: $(linuxX64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: debian
command: "Clean CompileManagedLoader"
retryCountForRunCommand: 1
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: centos7
useNativeSdkVersion: true
command: "BuildNativeTracerHome CompileTracerNativeTests RunTracerNativeTests"
retryCountForRunCommand: 1
apiKey: $(DD_LOGGER_DD_API_KEY)
- template: steps/run-in-docker.yml
parameters:
target: builder
baseImage: debian
command: "BuildManagedTracerHomeR2R ExtractDebugInfoLinux"
retryCountForRunCommand: 1
- publish: $(monitoringHome)
displayName: Uploading linux tracer home artifact
artifact: linux-tracer-home-linux-x64-r2r
- publish: $(System.DefaultWorkingDirectory)
displayName: Upload working directory after the build
artifact: build-linux-x64-r2r-working-directory
- publish: $(symbols)
displayName: Upload linux tracer symbols
artifact: linux-tracer-symbols-linux-x64-r2r
- publish: artifacts/build_data/tests
displayName: publish tracer and native loader test results
artifact: build_linux_tracer_unit_tests_results_linux-x64-r2r_$(System.JobAttempt)
- stage: build_linux_universal
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
dependsOn: []
pool:
name: $(linuxX64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: "universal"
useNativeSdkVersion: true
command: "Clean BuildNativeLoader BuildNativeWrapper ExtractDebugInfoLinux ValidateNativeLoaderSnapshotTestsLinux"
retryCountForRunCommand: 1
- publish: $(monitoringHome)/linux-musl-x64
displayName: Uploading linux universal artifacts
artifact: linux-universal-home-linux-x64
- publish: $(symbols)/linux-musl-x64
displayName: Upload linux universal symbols
artifact: linux-universal-symbols-linux-x64
- stage: build_linux_profiler
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
dependsOn: []
strategy:
matrix:
x64:
baseImage: centos7
managedBaseImage: debian
artifactSuffix: linux-x64
useNativeSdkVersion: true
alpine:
baseImage: alpine
managedBaseImage: alpine
artifactSuffix: linux-musl-x64
useNativeSdkVersion: ""
pool:
name: $(linuxX64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: $(baseImage)
useNativeSdkVersion: $(useNativeSdkVersion)
# We only need the native wrapper for the unit tests but we do not want to publish it (universal binary)
command: "Clean BuildProfilerHome CompileNativeWrapper CompileProfilerNativeTests RunProfilerNativeTests CompileNativeWrapperNativeTests RunNativeWrapperNativeTests CompileNativeLoaderNativeTests RunNativeLoaderNativeTests"
retryCountForRunCommand: 1
apiKey: $(DD_LOGGER_DD_API_KEY)
# We have to run these in a separate stage because the version of nm included with centos7 is insufficient to validate the glibc version
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: $(managedBaseImage)
command: "ExtractDebugInfoLinux ValidateNativeProfilerGlibcCompatibility"
retryCountForRunCommand: 1
- publish: $(monitoringHome)
displayName: Uploading linux profiler home artifact
artifact: linux-profiler-home-$(artifactSuffix)
- publish: $(symbols)
displayName: Upload linux profiler symbols
artifact: linux-profiler-symbols-$(artifactSuffix)
- publish: profiler/build_data/tests
displayName: publish profiler test results
artifact: build_linux_profiler_unit_tests_results_$(artifactSuffix)_$(System.JobAttempt)
- stage: package_linux
dependsOn: [merge_commit_id, build_linux_tracer, build_linux_profiler, build_dd_dotnet_linux, build_linux_universal]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [package]
- job: package
dependsOn: []
timeoutInMinutes: 60 #default value
strategy:
matrix:
x64:
baseImage: debian
artifactSuffix: linux-x64
alpine:
baseImage: alpine
artifactSuffix: linux-musl-x64
pool:
name: $(linuxX64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
# Download _both_ musl and glibc if we're building the universal package
# but only the musl package if we're building alpine package
- template: steps/download-artifact.yml
parameters:
artifact: linux-tracer-home-linux-x64
path: $(monitoringHome)
condition: eq(variables['artifactSuffix'], 'linux-x64')
- template: steps/download-artifact.yml
parameters:
artifact: linux-profiler-home-linux-x64
path: $(monitoringHome)
condition: eq(variables['artifactSuffix'], 'linux-x64')
- template: steps/download-artifact.yml
parameters:
artifact: dd-dotnet-linux-x64
path: $(monitoringHome)/linux-x64
condition: eq(variables['artifactSuffix'], 'linux-x64')
- template: steps/download-artifact.yml
parameters:
artifact: linux-tracer-home-linux-musl-x64
path: $(monitoringHome)
- template: steps/download-artifact.yml
parameters:
artifact: linux-profiler-home-linux-musl-x64
path: $(monitoringHome)
- template: steps/download-artifact.yml
parameters:
artifact: dd-dotnet-linux-musl-x64
path: $(monitoringHome)/linux-musl-x64
- script: |
chmod +x $(monitoringHome)/linux-musl-x64/dd-dotnet
# don't panic if the file doesn't exist
chmod +x $(monitoringHome)/linux-x64/dd-dotnet | :
displayName: chmod dd-dotnet
- template: steps/download-artifact.yml
parameters:
artifact: linux-universal-home-linux-x64
path: $(monitoringHome)/$(artifactSuffix)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: $(baseImage)
command: "ZipMonitoringHome"
retryCountForRunCommand: 1
- publish: $(artifacts)/linux-x64
displayName: Upload linux-x64 packages
artifact: linux-packages-$(artifactSuffix)
- publish: $(monitoringHome)
displayName: Upload linux-x64 monitoring home
artifact: linux-monitoring-home-$(artifactSuffix)
- stage: build_arm64_tracer
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
dependsOn: []
strategy:
matrix:
arm64:
baseImage: debian
artifactSuffix: linux-arm64
alpine:
baseImage: alpine
artifactSuffix: linux-musl-arm64
pool:
name: $(linuxArm64Pool)
workspace:
clean: all
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: $(baseImage)
command: "Clean CompileManagedLoader BuildNativeTracerHome BuildManagedTracerHome ExtractDebugInfoLinux ValidateNativeTracerGlibcCompatibility"
retryCountForRunCommand: 1
- publish: $(monitoringHome)
displayName: Uploading linux tracer home artifact
artifact: linux-tracer-home-$(artifactSuffix)
- publish: $(System.DefaultWorkingDirectory)
displayName: Upload working directory after the build
artifact: build-$(artifactSuffix)-working-directory
- publish: $(symbols)
displayName: Upload linux tracer symbols
artifact: linux-tracer-symbols-$(artifactSuffix)
- stage: build_arm64_tracer_r2r
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
dependsOn: []
pool:
name: $(linuxArm64Pool)
workspace:
clean: all
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: debian
command: "Clean CompileManagedLoader BuildNativeTracerHome BuildManagedTracerHomeR2R ExtractDebugInfoLinux"
retryCountForRunCommand: 1
- publish: $(monitoringHome)
displayName: Uploading linux tracer home artifact
artifact: linux-tracer-home-linux-arm64-r2r
- publish: $(System.DefaultWorkingDirectory)
displayName: Upload working directory after the build
artifact: build-linux-arm64-r2r-working-directory
- publish: $(symbols)
displayName: Upload linux tracer symbols
artifact: linux-tracer-symbols-linux-arm64-r2r
- stage: build_arm64_profiler
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
dependsOn: []
strategy:
matrix:
arm64:
baseImage: debian
artifactSuffix: linux-arm64
alpine:
baseImage: alpine
artifactSuffix: linux-musl-arm64
pool:
name: $(linuxArm64Pool)
workspace:
clean: all
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: $(baseImage)
command: "Clean BuildProfilerHome ExtractDebugInfoLinux ValidateNativeProfilerGlibcCompatibility"
retryCountForRunCommand: 1
- publish: $(System.DefaultWorkingDirectory)/profiler/_build
displayName: Uploading linux profiler output build folder
artifact: linux-profiler-binaries-$(artifactSuffix)
- publish: $(monitoringHome)
displayName: Uploading linux profiler home artifact
artifact: linux-profiler-home-$(artifactSuffix)
- publish: $(symbols)
displayName: Upload linux profiler symbols
artifact: linux-profiler-symbols-$(artifactSuffix)
- stage: build_arm64_universal
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [build]
- job: build
timeoutInMinutes: 60 #default value
dependsOn: []
pool:
name: $(linuxArm64Pool)
workspace:
clean: all
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: "universal"
useNativeSdkVersion: true
command: "Clean BuildNativeLoader BuildNativeWrapper ExtractDebugInfoLinux ValidateNativeLoaderSnapshotTestsLinux"
retryCountForRunCommand: 1
- publish: $(monitoringHome)/linux-musl-arm64
displayName: Uploading linux universal arm64 artifacts
artifact: linux-universal-home-linux-arm64
- publish: $(symbols)/linux-musl-arm64
displayName: Upload linux universal arm64 symbols
artifact: linux-universal-symbols-linux-arm64
- stage: package_arm64
dependsOn: [merge_commit_id, build_arm64_tracer, build_arm64_profiler, build_dd_dotnet_linux_arm64, build_arm64_universal]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [package]
- job: package
dependsOn: []
timeoutInMinutes: 60 #default value
strategy:
matrix:
arm64:
baseImage: debian
artifactSuffix: linux-arm64
alpine:
baseImage: alpine
artifactSuffix: linux-musl-arm64
pool:
name: $(linuxArm64Pool)
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
# Download _both_ musl and glibc if we're building the universal package
# but only the musl package if we're building alpine package
- template: steps/download-artifact.yml
parameters:
artifact: linux-tracer-home-linux-arm64
path: $(monitoringHome)
condition: eq(variables['artifactSuffix'], 'linux-arm64')
- template: steps/download-artifact.yml
parameters:
artifact: linux-profiler-home-linux-arm64
path: $(monitoringHome)
condition: eq(variables['artifactSuffix'], 'linux-arm64')
- template: steps/download-artifact.yml
parameters:
artifact: dd-dotnet-linux-arm64
path: $(monitoringHome)/linux-arm64
condition: eq(variables['artifactSuffix'], 'linux-arm64')
- template: steps/download-artifact.yml
parameters:
artifact: linux-tracer-home-linux-musl-arm64
path: $(monitoringHome)
- template: steps/download-artifact.yml
parameters:
artifact: linux-profiler-home-linux-musl-arm64
path: $(monitoringHome)
- template: steps/download-artifact.yml
parameters:
artifact: dd-dotnet-linux-musl-arm64
path: $(monitoringHome)/linux-musl-arm64
- script: |
chmod +x $(monitoringHome)/linux-musl-arm64/dd-dotnet
# don't panic if the file doesn't exist
chmod +x $(monitoringHome)/linux-arm64/dd-dotnet | :
displayName: chmod dd-dotnet
- template: steps/download-artifact.yml
parameters:
artifact: linux-universal-home-linux-arm64
path: $(monitoringHome)/$(artifactSuffix)
- template: steps/run-in-docker.yml
parameters:
build: true
target: builder
baseImage: $(baseImage)
command: "ZipMonitoringHome"
retryCountForRunCommand: 1
- publish: $(artifacts)/linux-arm64
displayName: Upload arm64 packages
artifact: linux-packages-$(artifactSuffix)
- publish: $(monitoringHome)
displayName: Upload arm64 monitoring home
artifact: linux-monitoring-home-$(artifactSuffix)
- stage: build_macos
dependsOn: [merge_commit_id]
variables:
targetShaId: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.sha']]
targetBranch: $[ stageDependencies.merge_commit_id.fetch.outputs['set_sha.branch']]
jobs:
- template: steps/update-github-status-jobs.yml
parameters:
jobs: [native_tracer, native_loader_and_managed, upload_artifacts]
- job: native_tracer
timeoutInMinutes: 60 #default value
dependsOn: [ ]
pool:
vmImage: macos-14
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/install-latest-dotnet-sdk.yml
- script: ./tracer/build.sh CreateRequiredDirectories CompileManagedLoader BuildNativeTracerHome
displayName: Build native-tracer
retryCountOnTaskFailure: 1
- publish: $(monitoringHome)
displayName: Uploading macos native tracer artifact
artifact: build-macos-native_tracer
- job: native_loader_and_managed
timeoutInMinutes: 60 #default value
dependsOn: [ ]
pool:
vmImage: macos-14
steps:
- template: steps/clone-repo.yml
parameters:
targetShaId: $(targetShaId)
targetBranch: $(targetBranch)
- template: steps/install-latest-dotnet-sdk.yml
# The CreateTrimmingFile tasks expects the managed loader but we build that in the other stage
- script: ./tracer/build.sh BuildManagedTracerHome BuildNativeLoader --skip CreateTrimmingFile
displayName: Build managed tracer + native loader
retryCountOnTaskFailure: 1
- publish: $(monitoringHome)
displayName: Uploading macos native tracer artifact
artifact: build-macos-native_loader
- publish: $(System.DefaultWorkingDirectory)
displayName: Upload working directory after the build
artifact: build-macos-working-directory