content stringlengths 1 103k ⌀ | path stringlengths 8 216 | filename stringlengths 2 179 | language stringclasses 15
values | size_bytes int64 2 189k | quality_score float64 0.5 0.95 | complexity float64 0 1 | documentation_ratio float64 0 1 | repository stringclasses 5
values | stars int64 0 1k | created_date stringdate 2023-07-10 19:21:08 2025-07-09 19:11:45 | license stringclasses 4
values | is_test bool 2
classes | file_hash stringlengths 32 32 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
# The purpose of this pipeline is to exercise various developer workflows in the repo.\n# Primarily, it is meant to cover local (non-cross) build scenarios and\n# source-build scenarios that commonly cause build breaks.\n\ntrigger: none\n\npr:\n branches:\n include:\n - main\n - release/*.*\n paths:\n include:\n - '*'\n - eng/pipelines/global-build.yml\n exclude:\n - '**.md'\n - .devcontainer/*\n - .github/*\n - docs/*\n - eng/pipelines/coreclr/*.*\n - eng/pipelines/libraries/*.*\n - eng/pipelines/installer/*.*\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n isOfficialBuild: false\n stages:\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-default-paths.yml\n\n - stage: Build\n jobs:\n\n #\n # Build with Release config and runtimeConfiguration with MSBuild generator\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x86\n jobParameters:\n testGroup: innerloop\n nameSuffix: MSBuild_CMake\n buildArgs: -c Release -msbuild\n timeoutInMinutes: 120\n condition:\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build with RuntimeFlavor only. This exercise code paths where only RuntimeFlavor is\n # specified. Catches cases where we depend on Configuration also being specified\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: debug\n platforms:\n - linux_x64_dev_innerloop\n jobParameters:\n testGroup: innerloop\n nameSuffix: RuntimeFlavor_Mono\n buildArgs: /p:RuntimeFlavor=Mono\n timeoutInMinutes: 120\n condition:\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build Libraries (all TFMs) and create packages on a non Windows operating system.\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: debug\n platforms:\n - linux_x64_dev_innerloop\n jobParameters:\n nameSuffix: Libraries_WithPackages\n buildArgs: -subset libs -pack\n timeoutInMinutes: 120\n condition:\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build native assets on Alpine. This exercises more modern musl libc changes that have a tendendy to break source-build.\n # We don't add this as a source-build job as the repo source-build infrastructure isn't set up to run on alpine effectively.\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: debug\n platforms:\n - linux_musl_x64_dev_innerloop\n jobParameters:\n nameSuffix: Musl_Validation\n buildArgs: -subset clr.native+libs.native+host.native -c $(_BuildConfig)\n timeoutInMinutes: 120\n condition:\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build Portable SourceBuild\n #\n - template: /eng/common/templates/jobs/source-build.yml\n parameters:\n platforms:\n - name: Linux_x64\n targetRID: linux-x64\n container: SourceBuild_linux_x64\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\global-build.yml | global-build.yml | YAML | 4,591 | 0.8 | 0.007752 | 0.168067 | node-utils | 170 | 2025-04-24T19:48:03.172263 | BSD-3-Clause | false | 3a932eb1a02bd97b4fc9ac1ad05c9dad |
# This is a wrapper yml for `runtime-extra-platforms-android.yml`, which\n# has all the Android jobs. This file is essentially so we can have point\n# the pipeline in azdo UI to this, and thus avoid any scheduled triggers\n\ntrigger: none\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-android.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isAndroidOnlyBuild: ${{ variables.isAndroidOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-android.yml | runtime-android.yml | YAML | 738 | 0.8 | 0.05 | 0.176471 | node-utils | 590 | 2024-01-19T09:58:22.394788 | Apache-2.0 | false | c91235f2ecddafb80c7e176a642cb78a |
# This is a wrapper yml for `runtime-extra-platforms-androidemulator.yml`,\n# which has all the wasm jobs. This file is essentially so we can have\n# point the pipeline in azdo UI to this, and thus avoid any scheduled\n# triggers\n\ntrigger: none\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-androidemulator.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isAndroidEmulatorOnlyBuild: ${{ variables.isAndroidEmulatorOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-androidemulator.yml | runtime-androidemulator.yml | YAML | 769 | 0.8 | 0.047619 | 0.222222 | node-utils | 24 | 2024-08-09T00:12:15.577200 | BSD-3-Clause | false | 29966e75ed721d89c4dfc4979ae7808e |
\ntrigger: none\n\nschedules:\n- cron: "0 11 * * 1,3"\n displayName: Every Monday and Wednesday at 3:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\npr:\n branches:\n include:\n - main\n - release/*.*\n paths:\n include:\n - '*'\n exclude:\n - /**/*.md\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n #\n # Build CoreCLR and Libraries\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - windows_x64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: innerloop\n\n #\n # CoreCLR Test build\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: innerloop\n\n #\n # CoreCLR Test executions using live libraries\n #\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - windows_x64\n helixQueueGroup: cet\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: innerloop\n liveLibrariesBuildConfig: release\n useCodeFlowEnforcement: true\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-cet.yml | runtime-cet.yml | YAML | 2,887 | 0.8 | 0 | 0.104651 | react-lib | 104 | 2024-09-08T23:40:05.697323 | Apache-2.0 | false | 38b9ea9ef2f74c720d9729cc3d880616 |
trigger:\n none\n\nschedules:\n - cron: 0 12 * * 1,4,6\n # CodeQL auto-injects into other pipelines and will do a scan if one hasn't\n # been done in 72 hours. These can cause timeouts, so we ensure that one has\n # already been performed. We can increase this to 4x/week or be more\n # sophisticated if the 72 hour period ending Thursday ("4" in the cron line)\n # causes a problem.\n displayName: 3x/week CodeQL/Semmle run\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n - name: Codeql.Cadence\n value: 0\n - name: Codeql.TSAEnabled\n value: True\n - name: Codeql.BuildIdentifier\n value: $(System.JobDisplayName)\n - name: Codeql.Language\n value: cpp,csharp,java,python\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n #\n # Build CoreCLR runtime packs\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - linux_x64\n - windows_x64\n jobParameters:\n buildArgs: -s clr+libs+host+packs -c $(_BuildConfig)\n nameSuffix: AllSubsets_CoreCLR\n isOfficialBuild: ${{ variables.isOfficialBuild }}\n timeoutInMinutes: 360\n preBuildSteps:\n - task: CodeQL3000Init@0\n displayName: Initialize CodeQL (manually-injected)\n postBuildSteps:\n - task: CodeQL3000Finalize@0\n displayName: Finalize CodeQL (manually-injected)\n\n #\n # Build Mono runtime packs\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n runtimeFlavor: mono\n platforms:\n - linux_x64\n - windows_x64\n jobParameters:\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig)\n nameSuffix: AllSubsets_Mono\n isOfficialBuild: ${{ variables.isOfficialBuild }}\n timeoutInMinutes: 360\n preBuildSteps:\n - task: CodeQL3000Init@0\n displayName: Initialize CodeQL (manually-injected)\n postBuildSteps:\n - task: CodeQL3000Finalize@0\n displayName: Finalize CodeQL (manually-injected)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-codeql.yml | runtime-codeql.yml | YAML | 2,522 | 0.8 | 0.025641 | 0.150685 | node-utils | 573 | 2023-10-08T21:02:18.069625 | MIT | false | 0b1c95c26ced81feb2945e3fc9748243 |
trigger:\n batch: true\n branches:\n include:\n - release/*.*\n exclude:\n - release/6.0*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nschedules:\n - cron: "0 7,19 * * *" # run at 7:00 and 19:00 (UTC) which is 23:00 and 11:00 (PST).\n displayName: Runtime-community default schedule\n branches:\n include:\n - main\n always: false # run only if there were changes since the last successful scheduled run.\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-default-paths.yml\n\n - stage: Build\n jobs:\n\n #\n # s390x & PPC64 little endian\n # Build the whole product using Mono and run libraries tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - linux_s390x\n - linux_ppc64le\n variables:\n # map dependencies variables to local variables\n - name: librariesContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]\n - name: monoContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'] ]\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono\n buildArgs: -s mono+libs+host+packs+libs.tests+clr.iltools+clr.packages -c $(_BuildConfig) /p:ArchiveTests=true\n timeoutInMinutes: 180\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_$(_BuildConfig)\n condition: >-\n or(\n eq(variables['librariesContainsChange'], true),\n eq(variables['monoContainsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build the whole product using Mono\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - freebsd_x64\n variables:\n # map dependencies variables to local variables\n - name: librariesContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]\n - name: monoContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'] ]\n jobParameters:\n testScope: innerloop\n nameSuffix: AllSubsets_Mono\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig)\n timeoutInMinutes: 120\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n # disable armv6 until https://github.com/dotnet/runtime/issues/104333 is fixed\n #\n # Build the whole product using Mono and run libraries tests\n #\n #- template: /eng/pipelines/common/platform-matrix.yml\n # parameters:\n # jobTemplate: /eng/pipelines/common/global-build-job.yml\n # helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n # buildConfig: Release\n # runtimeFlavor: mono\n # platforms:\n # - linux_armv6\n # variables:\n # # map dependencies variables to local variables\n # - name: librariesContainsChange\n # value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]\n # - name: monoContainsChange\n # value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'] ]\n # jobParameters:\n # testScope: innerloop\n # nameSuffix: AllSubsets_Mono\n # buildArgs: -s mono+clr.iltools+clr.packages+libs+host+packs+libs.tests -c $(_BuildConfig) /p:ArchiveTests=true\n # timeoutInMinutes: 120\n # condition: >-\n # or(\n # eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n # eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n # eq(variables['isRollingBuild'], true))\n # ${{ if eq(variables['isRollingBuild'], true) }}:\n # # extra steps, run tests\n # postBuildSteps:\n # - template: /eng/pipelines/libraries/helix.yml\n # parameters:\n # creator: dotnet-bot\n # testRunNamePrefixSuffix: Mono_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-community.yml | runtime-community.yml | YAML | 6,249 | 0.8 | 0.02027 | 0.319149 | node-utils | 48 | 2024-02-13T09:24:50.050683 | MIT | false | 8a397cec660f10432ea678883599abc1 |
trigger: none\n\nresources:\n repositories:\n - repository: diagnostics\n type: github\n name: dotnet/diagnostics\n endpoint: public\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nschedules:\n- cron: "30 2 * * *"\n displayName: Every night at 2:30AM\n branches:\n include:\n - main\n always: true\n\npr:\n branches:\n include:\n - main\n paths:\n include:\n - '/eng/pipelines/**'\n - '/src/coreclr/**'\n - '/src/native/**'\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n jobParameters:\n buildArgs: -s clr+libs+tools.cdacreader+host+packs -c $(_BuildConfig)\n nameSuffix: AllSubsets_CoreCLR\n isOfficialBuild: ${{ variables.isOfficialBuild }}\n timeoutInMinutes: 360\n postBuildSteps:\n - powershell: |\n $versionDir = Get-ChildItem -Directory -Path "$(Build.SourcesDirectory)\artifacts\bin\testhost\net*\shared\Microsoft.NETCore.App" | Select-Object -ExpandProperty FullName\n Write-Host "##vso[task.setvariable variable=versionDir]$versionDir"\n displayName: 'Set Path to Shared Framework Artifacts'\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(versionDir)\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)_coreclr\n displayName: Build Assets\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/diagnostics/runtime-diag-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n jobParameters:\n name: Windows\n isOfficialBuild: ${{ variables.isOfficialBuild }}\n liveRuntimeDir: $(Build.SourcesDirectory)/artifacts/runtime\n timeoutInMinutes: 360\n dependsOn:\n - build_windows_x64_release_AllSubsets_CoreCLR\n preBuildSteps:\n - template: /eng/pipelines/common/download-artifact-step.yml\n parameters:\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)_coreclr\n artifactFileName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)_coreclr$(archiveExtension)\n unpackFolder: $(Build.SourcesDirectory)/artifacts/runtime\n displayName: 'Runtime Build Artifacts'\n postBuildSteps:\n - task: PublishTestResults@2\n inputs:\n testResultsFormat: xUnit\n testResultsFiles: '**/*.xml'\n searchFolder: '$(Build.SourcesDirectory)/artifacts/TestResults'\n testRunTitle: 'Tests $(_PhaseName)'\n failTaskOnFailedTests: true\n publishRunAttachments: true\n mergeTestResults: true\n buildConfiguration: $(_BuildConfig)\n continueOnError: true\n condition: always()\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-diagnostics.yml | runtime-diagnostics.yml | YAML | 3,528 | 0.8 | 0 | 0 | vue-tools | 322 | 2024-10-14T06:10:01.348450 | MIT | false | 270e182f7139d539fe0b82337bf32175 |
# This pipeline includes the platforms that we don't have resources to run on every PR but that we want\n# to still have test coverage, we run this pipeline on a schedule and also developers can run it\n# via /azp run command on PRs. This pipeline permits us to have the main runtime pipeline run the same\n# platforms in PRs and Scheduled builds.\n\n# Setting batch to true, triggers one build at a time.\n# if there is a push while a build in progress, it will wait,\n# until the running build finishes, and produce a build with all the changes\n# that happened during the last build.\ntrigger:\n batch: true\n branches:\n include:\n - release/*.*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nschedules:\n - cron: "0 9,21 * * *" # run at 9:00 and 21:00 (UTC) which is 1:00 and 13:00 (PST).\n displayName: Runtime extra main schedule\n branches:\n include:\n - main\n always: false # run only if there were changes since the last successful scheduled run.\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-default-paths.yml\n\n - stage: Build\n jobs:\n\n # Add wasm jobs only for rolling builds\n - ${{ if eq(variables.isRollingBuild, true) }}:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-wasm.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isWasmOnlyBuild: ${{ variables.isWasmOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n\n # Add iOS/tvOS jobs\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-ioslike.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isiOSLikeOnlyBuild: ${{ variables.isiOSLikeOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n\n # Add iOS/tvOS simulator jobs\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-ioslikesimulator.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isiOSLikeSimulatorOnlyBuild: ${{ variables.isiOSLikeSimulatorOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n\n # Add Android jobs\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-android.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isAndroidOnlyBuild: ${{ variables.isAndroidOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n\n # Add Android emulator jobs\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-androidemulator.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isAndroidEmulatorOnlyBuild: ${{ variables.isAndroidEmulatorOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n\n # Add Mac Catalyst jobs\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-maccatalyst.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isMacCatalystOnlyBuild: ${{ variables.isMacCatalystOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n\n # Add Linux Bionic jobs\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-linuxbionic.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isLinuxBionicOnlyBuild: ${{ variables.isLinuxBionicOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n\n # Any jobs that are not specific to any platform\n - ${{ if eq(variables.isNotSpecificPlatformOnlyBuild, true) }}:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-other.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-extra-platforms.yml | runtime-extra-platforms.yml | YAML | 4,321 | 0.8 | 0.066038 | 0.172043 | awesome-app | 101 | 2024-08-04T03:06:54.154891 | GPL-3.0 | false | 74e2ca138029f231211ac748cd43c701 |
# This is a wrapper yml for `runtime-extra-platforms-ioslike.yml`, which\n# has all the iOS/tvOS jobs. This file is essentially so we can have point\n# the pipeline in azdo UI to this, and thus avoid any scheduled triggers\n\ntrigger: none\n\n# To reduce the load on the pipeline, enable it only for PRs that affect Mono LLVM related code.\npr:\n branches:\n include:\n - main\n - release/*.*\n\n paths:\n include:\n - src/mono/mono/mini/aot-*.*\n - src/mono/mono/mini/llvm-*.*\n - src/mono/mono/mini/mini-llvm-*.*\n - src/mono/mono/mini/intrinsics.c\n - src/mono/mono/mini/simd-*.*\n - src/mono/mono/mini/decompose.c\n - src/mono/mono/mini/method-to-ir.c\n - src/mono/mono/mini/mini.c\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-ioslike.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isiOSLikeOnlyBuild: ${{ variables.isiOSLikeOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-ioslike.yml | runtime-ioslike.yml | YAML | 1,221 | 0.8 | 0.052632 | 0.121212 | awesome-app | 440 | 2023-12-10T13:57:50.676808 | BSD-3-Clause | false | b7bc7fc95e0628e55be8d8ba58e0cf28 |
# This is a wrapper yml for `runtime-extra-platforms-ioslikesimulator.yml`, \n# which has all the iOS/tvOS simulator jobs. This file is essentially so we\n# can have point the pipeline in azdo UI to this, and thus avoid any\n# scheduled triggers\n\ntrigger: none\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-ioslikesimulator.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isiOSLikeSimulatorOnlyBuild: ${{ variables.isiOSLikeSimulatorOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-ioslikesimulator.yml | runtime-ioslikesimulator.yml | YAML | 788 | 0.8 | 0.047619 | 0.222222 | node-utils | 727 | 2025-04-12T21:30:14.025572 | BSD-3-Clause | false | 660b7f8fadcf0f030eddd3e5adfbdf5d |
# This is a wrapper yml for `runtime-extra-platforms-linuxbionic.yml`, which\n# has all the Linux Bionic jobs. This file is essentially so we can have point\n# the pipeline in azdo UI to this, and thus avoid any scheduled triggers\n\ntrigger: none\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-linuxbionic.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isLinuxBionicOnlyBuild: ${{ variables.isLinuxBionicOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-linuxbionic.yml | runtime-linuxbionic.yml | YAML | 759 | 0.8 | 0.05 | 0.176471 | python-kit | 315 | 2024-12-13T06:52:29.513676 | GPL-3.0 | false | 0dbd2240a99c6635478c97e7078a5358 |
# Setting batch to true, triggers one build at a time.\n# if there is a push while a build in progress, it will wait,\n# until the running build finishes, and produce a build with all the changes\n# that happened during the last build.\ntrigger:\n batch: true\n branches:\n include:\n - release/*.*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nschedules:\n - cron: "0 8,20 * * *" # run at 8:00 and 20:00 (UTC) which is 00:00 and 12:00 (PST).\n displayName: Runtime default schedule\n branches:\n include:\n - main\n always: false # run only if there were changes since the last successful scheduled run.\n\n# To reduce the load on the pipeline, enable it only for PRs that affect Mono LLVM related code.\npr:\n branches:\n include:\n - main\n - release/*.*\n\n paths:\n include:\n - src/mono/mono/mini/aot-*.*\n - src/mono/mono/mini/llvm-*.*\n - src/mono/mono/mini/mini-llvm-*.*\n - src/mono/mono/mini/intrinsics.c\n - src/mono/mono/mini/simd-*.*\n - src/mono/mono/mini/decompose.c\n - src/mono/mono/mini/method-to-ir.c\n - src/mono/mono/mini/mini.c\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-default-paths.yml\n\n - stage: Build\n jobs:\n #\n # Build Mono and Installer on LLVMAOT mode\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - linux_x64\n - linux_arm64\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_LLVMAOT\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig) /p:MonoEnableLLVM=true /p:MonoAOTEnableLLVM=true\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n runtimeFlavor: mono\n platforms:\n - osx_x64\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_LLVMAOT\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig) /p:MonoEnableLLVM=true /p:MonoAOTEnableLLVM=true\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - linux_x64\n # Tracking issue: https://github.com/dotnet/runtime/issues/90427\n #- linux_arm64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_LLVMAOT_RuntimeTests\n runtimeVariant: llvmaot\n buildArgs: -s mono+libs+clr.hosts+clr.iltools -c $(_BuildConfig) /p:MonoEnableLLVM=true\n timeoutInMinutes: 360\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n llvmAotStepContainer: linux_x64_llvmaot\n testRunNamePrefixSuffix: Mono_Release\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n\n #\n # Mono CoreCLR runtime Test executions using live libraries and LLVM Full AOT\n # Only when Mono is changed\n # This job runs non-intrinsics runtime tests due to OOM issues\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - linux_x64\n # Tracking issue: https://github.com/dotnet/runtime/issues/90427\n # - linux_arm64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_LLVMFULLAOT_RuntimeTests\n runtimeVariant: llvmfullaot\n buildArgs: -s mono+libs+clr.hosts+clr.iltools -c $(_BuildConfig) /p:MonoEnableLLVM=true\n timeoutInMinutes: 400\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n llvmAotStepContainer: linux_x64_llvmaot\n testRunNamePrefixSuffix: Mono_Release\n testBuildArgs: >-\n -tree:CoreMangLib -tree:Exceptions -tree:GC -tree:Interop -tree:Loader -tree:Regressions -tree:baseservices\n -tree:ilasm -tree:ilverify -tree:managed -tree:profiler -tree:readytorun -tree:reflection -tree:tracing\n -tree:JIT/BBT -tree:JIT/CodeGenBringUpTests -tree:JIT/Directed -tree:JIT/Generics -tree:JIT/IL_Conformance\n -tree:JIT/Math -tree:JIT/Methodical -tree:JIT/PGO -tree:JIT/Performance -tree:JIT/Regression -tree:JIT/RyuJIT\n -tree:JIT/Stress -tree:JIT/common -tree:JIT/jit64 -tree:JIT/opt -tree:JIT/superpmi\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n\n #\n # Mono CoreCLR runtime Test executions using live libraries and LLVM Full AOT\n # Only when Mono is changed\n # This job runs the runtime intrinsics tests due to OOM issues\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - linux_x64\n # Tracking issue: https://github.com/dotnet/runtime/issues/90427\n # - linux_arm64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_LLVMFULLAOT_RuntimeIntrinsicsTests\n runtimeVariant: llvmfullaot\n buildArgs: -s mono+libs+clr.hosts+clr.iltools -c $(_BuildConfig) /p:MonoEnableLLVM=true\n timeoutInMinutes: 400\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n llvmAotStepContainer: linux_x64_llvmaot\n testRunNamePrefixSuffix: Mono_Release\n testBuildArgs: -tree:JIT/Intrinsics -tree:JIT/HardwareIntrinsics -tree:JIT/SIMD\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-llvm.yml | runtime-llvm.yml | YAML | 10,320 | 0.8 | 0.022026 | 0.110599 | node-utils | 717 | 2024-09-03T17:48:37.829463 | MIT | false | c54cc7fab3b36e5a8c6191e31c3ad416 |
# This is a wrapper yml for `runtime-extra-platforms-maccatalyst.yml`, which\n# has all the Mac Catalyst jobs. This file is essentially so we can have point\n# the pipeline in azdo UI to this, and thus avoid any scheduled triggers\n\ntrigger: none\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-maccatalyst.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isMacCatalystOnlyBuild: ${{ variables.isMacCatalystOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-maccatalyst.yml | runtime-maccatalyst.yml | YAML | 759 | 0.8 | 0.05 | 0.176471 | react-lib | 833 | 2024-06-28T00:01:33.719695 | BSD-3-Clause | false | f27a5e3bc13e8fe611e01908bae334ee |
trigger:\n batch: true\n branches:\n include:\n - main\n - release/*\n - internal/release/*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\n# This is an official pipeline that should not be triggerable from a PR,\n# there is no public pipeline associated with it.\npr: none\n\nvariables:\n- template: /eng/pipelines/common/variables.yml\n parameters:\n templatePath: 'templates-official'\n- template: /eng/pipelines/common/internal-variables.yml\n parameters:\n teamName: dotnet-core-acquisition\n\nextends:\n template: /eng/pipelines/official/pipeline.yml\n parameters:\n otherStages:\n - ${{ if eq(variables['Build.SourceBranch'], 'refs/heads/main') }}:\n - stage: Localization\n dependsOn: []\n jobs:\n #\n # Localization build\n #\n - template: /eng/common/templates-official/job/onelocbuild.yml\n parameters:\n MirrorRepo: runtime\n MirrorBranch: main\n LclSource: lclFilesfromPackage\n LclPackageId: 'LCL-JUNO-PROD-RUNTIME'\n - stage: Source_Index\n dependsOn: []\n displayName: Source Index\n jobs:\n #\n # Source Index Build\n #\n - template: /eng/common/templates-official/job/source-index-stage1.yml\n parameters:\n sourceIndexBuildCommand: build.cmd -subset libs.sfx+libs.oob -binarylog -os linux -ci /p:SkipLibrariesNativeRuntimePackages=true\n buildStage:\n stage: Build\n dependsOn: []\n jobs:\n #\n # Build CoreCLR runtime packs\n # Windows x64/arm64\n # Sign diagnostic files after native build\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n - windows_x86\n - windows_arm64\n variables:\n - name: _SignDiagnosticFilesArgs\n value: ''\n - name: _EnableDefaultArtifactsArg\n value: $[iif(and(eq(variables.osGroup, 'windows'), eq(variables.archType, 'x64')),'/p:EnableDefaultRidSpecificArtifacts=false','')]\n jobParameters:\n templatePath: 'templates-official'\n preBuildSteps:\n - template: /eng/pipelines/coreclr/templates/install-diagnostic-certs.yml\n parameters:\n isOfficialBuild: true\n certNames:\n - 'dac-dnceng-ssl-cert'\n vaultName: 'clrdiag-esrp-pme'\n azureSubscription: 'diagnostics-esrp-kvcertuser-pme'\n\n buildArgs: -c $(_BuildConfig) -restore -build -publish /p:DotNetBuildAllRuntimePacks=true $(_SignDiagnosticFilesArgs) $(_EnableDefaultArtifactsArg)\n nameSuffix: AllRuntimes\n isOfficialBuild: true\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/remove-diagnostic-certs.yml\n parameters:\n isOfficialBuild: true\n\n #\n # Build all runtime packs\n # Mac x64/arm64\n # Sign and entitle createdump and corerun after native build.\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - osx_arm64\n - osx_x64\n jobParameters:\n templatePath: 'templates-official'\n buildArgs: -s clr.corelib+clr.nativecorelib+clr.nativeaotlibs+clr.tools+clr.packages+mono+libs+host.tools+host.pkg+packs -restore -build -publish -c $(_BuildConfig) /p:DotNetBuildAllRuntimePacks=true\n nameSuffix: AllRuntimes\n isOfficialBuild: ${{ variables.isOfficialBuild }}\n timeoutInMinutes: 120\n preBuildSteps:\n # Build our native assets first so we can sign them.\n - template: /eng/pipelines/common/templates/global-build-step.yml\n parameters:\n buildArgs: -s clr.runtime+clr.alljits+clr.nativeaotruntime+host.native -c $(_BuildConfig) /bl:$(Build.SourcesDirectory)/artifacts/logs/$(_BuildConfig)/CoreClrNativeBuild.binlog\n displayName: Build native CoreCLR and host components\n - ${{ if and(ne(variables['System.TeamProject'], 'public'), notin(variables['Build.Reason'], 'PullRequest')) }}:\n - template: /eng/pipelines/common/macos-sign-with-entitlements.yml\n parameters:\n filesToSign:\n - name: createdump\n path: $(Build.SourcesDirectory)/artifacts/bin/coreclr/$(osGroup).$(archType).$(_BuildConfig)\n - name: corerun\n path: $(Build.SourcesDirectory)/artifacts/bin/coreclr/$(osGroup).$(archType).$(_BuildConfig)\n - name: dotnet\n path: $(Build.SourcesDirectory)/artifacts/bin/$(osGroup)-$(archType).$(_BuildConfig)/corehost\n - name: apphost\n path: $(Build.SourcesDirectory)/artifacts/bin/$(osGroup)-$(archType).$(_BuildConfig)/corehost\n\n - task: CopyFiles@2\n displayName: 'Copy signed createdump to sharedFramework'\n inputs:\n contents: createdump\n sourceFolder: $(Build.SourcesDirectory)/artifacts/bin/coreclr/$(osGroup).$(archType).$(_BuildConfig)\n targetFolder: $(Build.SourcesDirectory)/artifacts/bin/coreclr/$(osGroup).$(archType).$(_BuildConfig)/sharedFramework\n overWrite: true\n\n #\n # Build all runtime packs for Linux, Linux musl, and mobile\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - linux_x64\n - linux_arm\n - linux_arm64\n - linux_musl_x64\n - linux_musl_arm\n - linux_musl_arm64\n - android_x64\n - android_x86\n - android_arm\n - android_arm64\n - maccatalyst_x64\n - maccatalyst_arm64\n - tvossimulator_x64\n - tvossimulator_arm64\n - tvos_arm64\n - iossimulator_x64\n - iossimulator_arm64\n - ios_arm64\n - linux_bionic_x64\n - linux_bionic_arm\n - linux_bionic_arm64\n - browser_wasm\n - wasi_wasm\n jobParameters:\n templatePath: 'templates-official'\n buildArgs: -c $(_BuildConfig) -restore -build -publish /p:DotNetBuildAllRuntimePacks=true\n nameSuffix: AllRuntimes\n isOfficialBuild: true\n timeoutInMinutes: 120\n\n #\n # Build and Pack CrossDac\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n jobParameters:\n templatePath: 'templates-official'\n buildArgs: -s crossdacpack -restore -build -publish -c $(_BuildConfig) /p:EnableDefaultRidSpecificArtifacts=false /p:CrossRuntimeExtractionRoot=$(CrossRuntimeExtractionRoot) $(_SignDiagnosticFilesArgs)\n nameSuffix: CrossDac\n isOfficialBuild: true\n timeoutInMinutes: 120\n templateContext:\n inputs:\n - input: pipelineArtifact\n artifactName: Build_linux_x64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/RuntimeDownload\n itemPattern: |\n packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-x64.*.nupkg\n !packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-x64.*.symbols.nupkg\n - input: pipelineArtifact\n artifactName: Build_linux_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/RuntimeDownload\n itemPattern: |\n packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-arm64.*.nupkg\n !packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-arm64.*.symbols.nupkg\n - input: pipelineArtifact\n artifactName: Build_linux_musl_x64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/RuntimeDownload\n itemPattern: |\n packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-musl-x64.*.nupkg\n !packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-musl-x64.*.symbols.nupkg\n - input: pipelineArtifact\n artifactName: Build_linux_musl_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/RuntimeDownload\n itemPattern: |\n packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-musl-arm64.*.nupkg\n !packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-musl-arm64.*.symbols.nupkg\n - input: pipelineArtifact\n artifactName: Build_linux_arm_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/RuntimeDownload\n itemPattern: |\n packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-arm.*.nupkg\n !packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-arm.*.symbols.nupkg\n - input: pipelineArtifact\n artifactName: Build_linux_musl_arm_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/RuntimeDownload\n itemPattern: |\n packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-musl-arm.*.nupkg\n !packages/Release/Shipping/Microsoft.NETCore.App.Runtime.linux-musl-arm.*.symbols.nupkg\n preBuildSteps:\n - powershell: $(Build.SourcesDirectory)/eng/extract-for-crossdac.ps1 -DownloadDirectory $(Build.ArtifactStagingDirectory)/artifacts/RuntimeDownload -ExtractDirectory $(CrossRuntimeExtractionRoot)\n displayName: Extract runtime packs\n - template: /eng/pipelines/coreclr/templates/install-diagnostic-certs.yml\n parameters:\n isOfficialBuild: true\n certNames:\n - 'dac-dnceng-ssl-cert'\n vaultName: 'clrdiag-esrp-pme'\n azureSubscription: 'diagnostics-esrp-kvcertuser-pme'\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/remove-diagnostic-certs.yml\n parameters:\n isOfficialBuild: true\n dependsOn:\n - build_linux_x64_release_AllRuntimes\n - build_linux_arm_release_AllRuntimes\n - build_linux_arm64_release_AllRuntimes\n - build_linux_musl_x64_release_AllRuntimes\n - build_linux_musl_arm_release_AllRuntimes\n - build_linux_musl_arm64_release_AllRuntimes\n variables:\n - name: CrossRuntimeExtractionRoot\n value: $(Build.SourcesDirectory)/artifacts/CrossDac\n - name: _SignDiagnosticFilesArgs\n value: ''\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n runtimeFlavor: mono\n platforms:\n - browser_wasm\n jobParameters:\n templatePath: 'templates-official'\n buildArgs: -c $(_BuildConfig) -restore -build -publish /p:DotNetBuildAllRuntimePacks=true /p:WasmEnableThreads=true\n nameSuffix: Mono_multithread\n isOfficialBuild: true\n runtimeVariant: multithread\n\n #\n # Build Mono LLVM runtime packs\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n platforms:\n - osx_x64\n - linux_x64\n - linux_arm64\n buildConfig: release\n runtimeFlavor: mono\n jobParameters:\n templatePath: 'templates-official'\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig) -restore -build -publish\n /p:MonoEnableLLVM=true /p:MonoAOTEnableLLVM=true /p:MonoBundleLLVMOptimizer=true\n nameSuffix: Mono_LLVMAOT\n runtimeVariant: LLVMAOT\n isOfficialBuild: true\n\n #\n # Build libraries (all TFMs) and packages\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n platforms:\n - windows_x64\n jobParameters:\n templatePath: 'templates-official'\n buildArgs: -s tools.illink+libs -restore -build -pack -publish -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true /p:EnableDefaultRidSpecificArtifacts=false\n nameSuffix: Libraries_WithPackages\n isOfficialBuild: true\n timeoutInMinutes: 95\n #\n # Build SourceBuild packages\n #\n - template: /eng/common/templates-official/jobs/source-build.yml\n parameters:\n platforms:\n - name: Linux_x64\n targetRID: linux-x64\n container: SourceBuild_linux_x64\n\n #\n # Build PGO Instrumented CoreCLR Release\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n helixQueueGroup: ci\n platforms:\n - windows_x64\n - windows_x86\n - linux_x64\n - windows_arm64\n - linux_arm64\n jobParameters:\n templatePath: 'templates-official'\n buildArgs: -s clr.native+clr.corelib+clr.tools+clr.nativecorelib+libs+host+packs -c $(_BuildConfig) -restore -build -publish -pgoinstrument /p:SkipLibrariesNativeRuntimePackages=true\n isOfficialBuild: true\n nameSuffix: PGO\n timeoutInMinutes: 95\n\n #\n # Build Workloads\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n jobParameters:\n templatePath: 'templates-official'\n nameSuffix: Workloads\n templateContext:\n inputs:\n - input: pipelineArtifact\n artifactName: Build_windows_x64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.android-*.nupkg\n **/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.browser-wasm*.nupkg\n **/Microsoft.NETCore.App.Runtime.AOT.win-x64.Cross.wasi-wasm*.nupkg\n **/Microsoft.NETCore.App.Runtime.win-x64*.nupkg\n - input: pipelineArtifact\n artifactName: Build_windows_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.android-*.nupkg\n **/Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.browser-wasm*.nupkg\n **/Microsoft.NETCore.App.Runtime.AOT.win-arm64.Cross.wasi-wasm*.nupkg\n **/Microsoft.NETCore.App.Runtime.win-arm64*.nupkg\n - input: pipelineArtifact\n artifactName: Build_windows_x86_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.win-x86*.nupkg\n - input: pipelineArtifact\n artifactName: Build_android_x64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.android-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_android_x86_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.android-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_android_arm_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.android-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_android_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.android-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_browser_wasm_Linux_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.browser-wasm*.nupkg\n **/Microsoft.NET.Workload.Mono.ToolChain.Current.Manifest*.nupkg\n **/Microsoft.NET.Workload.Mono.ToolChain.net6.Manifest*.nupkg\n **/Microsoft.NET.Workload.Mono.ToolChain.net7.Manifest*.nupkg\n **/Microsoft.NET.Workload.Mono.ToolChain.net8.Manifest*.nupkg\n **/Microsoft.NET.Workload.Mono.ToolChain.net9.Manifest*.nupkg\n **/Microsoft.NET.Runtime.WebAssembly.Sdk*.nupkg\n **/Microsoft.NET.Runtime.WebAssembly.Templates*.nupkg\n **/Microsoft.NET.Sdk.WebAssembly.Pack*.nupkg\n - input: pipelineArtifact\n artifactName: build_browser_wasm_linux_release_Mono_multithread_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.multithread.browser-wasm*.nupkg\n - input: pipelineArtifact\n artifactName: Build_wasi_wasm_Linux_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NET.Runtime.WebAssembly.Wasi*.nupkg\n **/Microsoft.NETCore.App.Runtime.Mono.wasi-wasm*.nupkg\n - input: pipelineArtifact\n artifactName: Build_ios_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NET.Runtime.MonoTargets.Sdk*.nupkg\n **/Microsoft.NET.Runtime.MonoAOTCompiler.Task*.nupkg\n **/Microsoft.NETCore.App.Runtime.Mono.ios-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_iossimulator_x64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.iossimulator-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_iossimulator_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.iossimulator-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_maccatalyst_x64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.maccatalyst-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_maccatalyst_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.maccatalyst-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_tvos_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.tvos-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_tvossimulator_x64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.tvossimulator-*.nupkg\n - input: pipelineArtifact\n artifactName: Build_tvossimulator_arm64_release_AllRuntimes_Artifacts\n targetPath: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n itemPattern: |\n **/Microsoft.NETCore.App.Runtime.Mono.tvossimulator-*.nupkg\n\n preBuildSteps:\n - task: CopyFiles@2\n displayName: Flatten packages\n inputs:\n sourceFolder: $(Build.ArtifactStagingDirectory)/artifacts/workloadPackages\n contents: 'packages/Release/Shipping/*.nupkg'\n cleanTargetFolder: true\n targetFolder: $(Build.SourcesDirectory)/artifacts/workloadPackages\n flattenFolders: true\n\n buildArgs: -s mono.workloads -c $(_BuildConfig) -restore -build -publish /p:PackageSource=$(Build.SourcesDirectory)/artifacts/workloadPackages /p:WorkloadOutputPath=$(Build.SourcesDirectory)/artifacts/workloads /p:EnableDefaultRidSpecificArtifacts=false\n\n isOfficialBuild: true\n timeoutInMinutes: 120\n dependsOn:\n - Build_android_arm_release_AllRuntimes\n - Build_android_arm64_release_AllRuntimes\n - Build_android_x86_release_AllRuntimes\n - Build_android_x64_release_AllRuntimes\n - Build_browser_wasm_Linux_release_AllRuntimes\n - Build_wasi_wasm_linux_release_AllRuntimes\n - Build_ios_arm64_release_AllRuntimes\n - Build_iossimulator_x64_release_AllRuntimes\n - Build_iossimulator_arm64_release_AllRuntimes\n - Build_maccatalyst_arm64_release_AllRuntimes\n - Build_maccatalyst_x64_release_AllRuntimes\n - Build_tvos_arm64_release_AllRuntimes\n - Build_tvossimulator_arm64_release_AllRuntimes\n - Build_tvossimulator_x64_release_AllRuntimes\n - Build_windows_x64_release_AllRuntimes\n - Build_windows_x86_release_AllRuntimes\n - Build_windows_arm64_release_AllRuntimes\n - build_browser_wasm_linux_release_Mono_multithread\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-official.yml | runtime-official.yml | YAML | 24,045 | 0.8 | 0.008032 | 0.155602 | vue-tools | 792 | 2024-02-02T07:59:37.283791 | MIT | false | 3b0903b8f6405bfd0e3c1815a029f704 |
# This pipeline provides an easy mechanism for us to run runtime and libaries tests with native sanitizers enabled\n# without having to compilcate the runtime.yml pipeline.\ntrigger: none\n\nschedules:\n- cron: "0 11 * * 2"\n displayName: Tuesday at 3:00 AM (UTC-8:00)\n branches:\n include:\n - main\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: AddressSanitizer\n jobs:\n #\n # Build the whole product with CoreCLR and run runtime tests with AddressSanitizer\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Checked\n runtimeFlavor: coreclr\n platforms:\n - linux_x64_sanitizer\n - osx_x64\n - windows_x64\n variables:\n - name: _nativeSanitizersArg\n value: -fsanitize address\n jobParameters:\n nameSuffix: CoreCLR_RuntimeTests\n buildArgs: -s clr+libs -c $(_BuildConfig) $(_nativeSanitizersArg)\n timeoutInMinutes: 300\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: CoreCLR_$(_BuildConfig)\n scenarios:\n - normal\n - no_tiered_compilation\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n parameters:\n testGroup: innerloop\n sanitizers: 'address'\n\n #\n # NativeAOT release build and smoke tests with AddressSanitizer\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: release\n platforms:\n - linux_x64_sanitizer\n - osx_x64\n - windows_x64\n variables:\n - name: _nativeSanitizersArg\n value: -fsanitize address\n jobParameters:\n testGroup: innerloop\n timeoutInMinutes: 120\n nameSuffix: NativeAOT\n buildArgs: -s clr.aot+libs -rc $(_BuildConfig) -lc Release $(_nativeSanitizersArg)\n postBuildSteps:\n - template: /eng/pipelines/coreclr/nativeaot-post-build-steps.yml\n parameters:\n creator: dotnet-bot\n testBuildArgs: nativeaot tree nativeaot\n liveLibrariesBuildConfig: Release\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n parameters:\n sanitizers: 'address'\n liveLibrariesBuildConfig: Release\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-sanitized.yml | runtime-sanitized.yml | YAML | 3,245 | 0.8 | 0.011628 | 0.109756 | node-utils | 935 | 2023-11-06T10:47:06.619753 | GPL-3.0 | false | cc4aede494bff81f8e3ac20bb261daa5 |
trigger: none\npr: none\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-default-paths.yml\n\n - stage: Build\n jobs:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-wasm.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isWasmOnlyBuild: ${{ variables.isWasmOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n excludeLibTests: true\n excludeNonLibTests: true\n excludeOptional: false\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-wasm-optional.yml | runtime-wasm-optional.yml | YAML | 830 | 0.7 | 0.038462 | 0 | awesome-app | 551 | 2025-05-25T04:54:37.382806 | GPL-3.0 | false | 5b125c53a137fe02a149f630783b4243 |
# This is a wrapper yml for `extra-platforms/runtime-extra-platforms-wasm.yml`, which\n# has all the wasm jobs. This file is essentially so we can have point\n# the pipeline in azdo UI to this, and thus avoid any scheduled triggers\n\ntrigger: none\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-default-paths.yml\n\n - stage: Build\n jobs:\n - template: /eng/pipelines/extra-platforms/runtime-extra-platforms-wasm.yml\n parameters:\n isExtraPlatformsBuild: ${{ variables.isExtraPlatformsBuild }}\n isWasmOnlyBuild: ${{ variables.isWasmOnlyBuild }}\n isRollingBuild: ${{ variables.isRollingBuild }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime-wasm.yml | runtime-wasm.yml | YAML | 952 | 0.8 | 0.076923 | 0.136364 | python-kit | 7 | 2025-01-18T16:51:26.754385 | Apache-2.0 | false | aba8b3575524ee993cc44513a879ae05 |
# Setting batch to true, triggers one build at a time.\n# if there is a push while a build in progress, it will wait,\n# until the running build finishes, and produce a build with all the changes\n# that happened during the last build.\ntrigger:\n batch: true\n branches:\n include:\n - release/*.*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n - eng/pipelines/performance/*\n - eng/testing/performance/*\n\nschedules:\n - cron: "0 8,20 * * *" # run at 8:00 and 20:00 (UTC) which is 00:00 and 12:00 (PST).\n displayName: Runtime default schedule\n branches:\n include:\n - main\n always: false # run only if there were changes since the last successful scheduled run.\n\npr:\n branches:\n include:\n - main\n - release/*.*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n isOfficialBuild: false\n stages:\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-default-paths.yml\n\n - stage: Build\n jobs:\n\n #\n # Build CoreCLR verticals where we don't run host tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - linux_musl_arm\n - linux_musl_arm64\n - windows_arm64\n - linux_arm\n jobParameters:\n nameSuffix: AllSubsets_CoreCLR_ReleaseRuntimeLibs\n buildArgs: -s clr+libs+host+packs -rc Release -lc Release -c $(_BuildConfig)\n timeoutInMinutes: 120\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - osx_arm64\n jobParameters:\n nameSuffix: AllSubsets_CoreCLR\n buildArgs: -s clr+libs+host+packs -rc Release -c Release -lc $(_BuildConfig)\n timeoutInMinutes: 120\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - linux_arm64\n - linux_musl_x64\n jobParameters:\n nameSuffix: AllSubsets_CoreCLR\n buildArgs: -s clr+libs+host+packs -rc Release -c Release -lc $(_BuildConfig)\n timeoutInMinutes: 120\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - browser_wasm\n jobParameters:\n nameSuffix: AllSubsets_CoreCLR\n buildArgs: -s clr.runtime -rc Release -c Release -lc $(_BuildConfig)\n timeoutInMinutes: 120\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build CoreCLR and Libraries with Libraries tests\n # For running libraries tests and installer tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - linux_x64\n - linux_musl_x64\n - osx_x64\n - windows_x64\n jobParameters:\n nameSuffix: CoreCLR_Libraries\n buildArgs: -s clr+libs+libs.tests -rc Release -c $(_BuildConfig) /p:ArchiveTests=true\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: CoreCLR_Libraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/helix\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: CoreCLR_Libraries_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x86\n jobParameters:\n nameSuffix: CoreCLR_Libraries\n buildArgs: -s clr+libs+libs.tests -c $(_BuildConfig) /p:ArchiveTests=true\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: CoreCLR_Libraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/helix\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: CoreCLR_Libraries_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build CoreCLR and Libraries with the respective tests\n # for the test configurations we run.\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - linux_arm64\n - osx_x64\n jobParameters:\n nameSuffix: Libraries_CheckedCoreCLR\n buildArgs: -s clr+libs+libs.tests -c $(_BuildConfig) -rc Checked /p:ArchiveTests=true\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: Libraries_CheckedCoreCLR_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/helix\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: Libraries_CheckedCoreCLR_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: innerloop\n configOverride: Checked\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - linux_x64\n - windows_x64\n jobParameters:\n nameSuffix: Libraries_CheckedCoreCLR\n buildArgs: -s clr+libs -c $(_BuildConfig) -rc Checked\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: Libraries_CheckedCoreCLR_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: innerloop\n configOverride: Checked\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - linux_musl_x64\n - windows_x86\n jobParameters:\n nameSuffix: Libraries_CheckedCoreCLR\n buildArgs: -s clr+libs+libs.tests -c $(_BuildConfig) -rc Checked /p:ArchiveTests=true\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: Libraries_CheckedCoreCLR_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/helix\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: Libraries_CheckedCoreCLR_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - osx_arm64\n jobParameters:\n nameSuffix: Libraries_CheckedCoreCLR\n buildArgs: -s clr+libs -c $(_BuildConfig) -rc Checked\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: Libraries_CheckedCoreCLR_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: innerloop\n configOverride: Checked\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr_AppleSilicon.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_arm\n - windows_arm64\n - windows_x86\n jobParameters:\n nameSuffix: CoreCLR_ReleaseLibraries\n buildArgs: -s clr+libs -rc $(_BuildConfig) -c Release\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: CoreCLR_ReleaseLibraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: innerloop\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - linux_musl_arm\n - linux_musl_arm64\n - windows_x64\n jobParameters:\n nameSuffix: CoreCLR_ReleaseLibraries\n buildArgs: -s clr+libs+libs.tests -rc $(_BuildConfig) -c Release /p:ArchiveTests=true\n timeoutInMinutes: 120\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: CoreCLR_ReleaseLibraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/helix\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: CoreCLR_ReleaseLibraries_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build the whole product using GNU compiler toolchain\n # When CoreCLR, Mono, Libraries, Installer and src/tests are changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - gcc_linux_x64\n jobParameters:\n testGroup: innerloop\n nameSuffix: Native_GCC\n buildArgs: -s clr.native+libs.native+mono+host.native -c $(_BuildConfig) -gcc\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests.yml\n parameters:\n testBuildArgs: skipmanaged skipgeneratelayout skiprestorepackages -gcc\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build CoreCLR and run crossgen on S.P.CoreLib\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: checked\n runtimeFlavor: coreclr\n platforms:\n - linux_x86\n jobParameters:\n testScope: innerloop\n nameSuffix: CoreCLR\n buildArgs: -s clr.runtime+clr.jit+clr.iltools+clr.spmi+clr.corelib+clr.nativecorelib -c $(_BuildConfig)\n timeoutInMinutes: 120\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build CoreCLR as a non-portable build\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: checked\n runtimeFlavor: coreclr\n platforms:\n - tizen_armel\n jobParameters:\n testScope: innerloop\n nameSuffix: CoreCLR_NonPortable\n buildArgs: -s clr.native+clr.tools+clr.corelib+clr.nativecorelib+clr.aot+clr.packages --outputrid tizen.9.0.0-armel -c $(_BuildConfig) /p:PortableBuild=false\n timeoutInMinutes: 120\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build CoreCLR + Libs + Host\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n runtimeFlavor: coreclr\n platforms:\n - freebsd_x64\n - linux_riscv64\n - linux_loongarch64\n jobParameters:\n testScope: innerloop\n nameSuffix: CoreCLR_TwoStage\n buildArgs: -s clr+libs+host -c $(_BuildConfig) -rc Checked -p:StageOneBuild=true\n timeoutInMinutes: 120\n postBuildSteps:\n - script: |\n echo Running $(Build.SourcesDirectory)/build$(scriptExt) \\n ${{ variables.debugOnPrReleaseOnRolling }} \\n -s clr.tools+packs -rc Checked -cross \\n -os $(osGroup) \\n -a $(archType) \\n -c $(_BuildConfig) \\n -p:StageTwoBuild=true\n\n $(Build.SourcesDirectory)/build$(scriptExt) \\n ${{ variables.debugOnPrReleaseOnRolling }} \\n -s clr.tools+packs -rc Checked -cross \\n -os $(osGroup) \\n -a $(archType) \\n -c $(_BuildConfig) \\n -p:StageTwoBuild=true\n displayName: Build clr.tools and packs\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # CoreCLR NativeAOT debug build and smoke tests\n # Only when CoreCLR is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Debug\n platforms:\n - linux_x64\n - windows_x64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n timeoutInMinutes: 120\n nameSuffix: NativeAOT\n buildArgs: -s clr.aot+libs -rc $(_BuildConfig) -lc Release /p:RunAnalyzers=false\n postBuildSteps:\n - template: /eng/pipelines/coreclr/nativeaot-post-build-steps.yml\n parameters:\n creator: dotnet-bot\n testBuildArgs: nativeaot tree nativeaot\n liveLibrariesBuildConfig: Release\n testRunNamePrefixSuffix: NativeAOT_$(_BuildConfig)\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n parameters:\n testGroup: innerloop\n liveLibrariesBuildConfig: Release\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # CoreCLR NativeAOT checked build and smoke tests\n # Only when CoreCLR is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Checked\n platforms:\n - windows_x64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n timeoutInMinutes: 180\n nameSuffix: NativeAOT\n buildArgs: -s clr.aot+libs.native+libs.sfx -rc $(_BuildConfig) -lc Release /p:RunAnalyzers=false\n postBuildSteps:\n - template: /eng/pipelines/coreclr/nativeaot-post-build-steps.yml\n parameters:\n creator: dotnet-bot\n testBuildArgs: 'nativeaot tree ";nativeaot;Loader;Interop;JIT/HardwareIntrinsics;" /p:BuildNativeAotFrameworkObjects=true'\n liveLibrariesBuildConfig: Release\n testRunNamePrefixSuffix: NativeAOT_$(_BuildConfig)\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n parameters:\n testGroup: innerloop\n liveLibrariesBuildConfig: Release\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # CoreCLR NativeAOT release build and smoke tests\n # Only when CoreCLR is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Release\n platforms:\n - linux_x64\n - windows_x64\n - osx_x64\n - linux_arm64\n - windows_arm64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n testGroup: innerloop\n timeoutInMinutes: 120\n nameSuffix: NativeAOT\n buildArgs: -s clr.aot+libs+tools.illink -c $(_BuildConfig) -rc $(_BuildConfig) -lc Release /p:RunAnalyzers=false\n postBuildSteps:\n - template: /eng/pipelines/coreclr/nativeaot-post-build-steps.yml\n parameters:\n creator: dotnet-bot\n testBuildArgs: 'nativeaot tree ";nativeaot;tracing/eventpipe/providervalidation;"'\n liveLibrariesBuildConfig: Release\n testRunNamePrefixSuffix: NativeAOT_$(_BuildConfig)\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n parameters:\n testGroup: innerloop\n liveLibrariesBuildConfig: Release\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # CoreCLR NativeAOT release build and libraries tests\n # Only when CoreCLR or library is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n platforms:\n - windows_arm64\n - linux_arm64\n - osx_arm64\n jobParameters:\n testGroup: innerloop\n isSingleFile: true\n nameSuffix: NativeAOT_Libraries\n buildArgs: -s clr.aot+libs+libs.tests -c $(_BuildConfig) /p:TestNativeAot=true /p:RunSmokeTestsOnly=true /p:ArchiveTests=true /p:RunAnalyzers=false\n timeoutInMinutes: 240 # Doesn't actually take long, but we've seen the ARM64 Helix queue often get backlogged for 2+ hours\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: NativeAOT_$(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n # Build and test clr tools\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_x64\n jobParameters:\n timeoutInMinutes: 120\n nameSuffix: CLR_Tools_Tests\n buildArgs: -s clr.aot+clr.iltools+libs.sfx+clr.toolstests+tools.cdacreader+tools.cdacreadertests -c $(_BuildConfig) -test\n enablePublishTestResults: true\n testResultsFormat: 'xunit'\n # We want to run AOT tests when illink changes because there's share code and tests from illink which are used by AOT\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_cdacreader.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n #\n # Build CrossDacs\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n variables:\n - name: _archParameter\n value: -arch x64,x86,arm,arm64\n jobParameters:\n buildArgs: -s linuxdac+alpinedac -c Checked,$(_BuildConfig)\n nameSuffix: CrossDac\n isOfficialBuild: false\n timeoutInMinutes: 60\n postBuildSteps:\n - publish: $(Build.SourcesDirectory)/artifacts/bin/coreclr\n displayName: Publish CrossDacs for diagnostics\n artifact: CoreCLRCrossDacArtifacts\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n # Build Mono AOT offset headers once, for validation\n # Only when mono changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - android_x64\n - browser_wasm\n - wasi_wasm\n - ios_arm64 # tvos and ios use the same offsets so we only need to build once\n - maccatalyst_x64\n variables:\n - name: _osParameter\n value: -os linux\n - name: _archParameter\n value: -arch x64\n jobParameters:\n nameSuffix: MonoAOTOffsets\n buildArgs: -s mono.aotcross -c $(_BuildConfig) /p:MonoGenerateOffsetsOSGroups=$(osGroup) /p:ValidateMonoOffsets=true\n postBuildSteps:\n # Upload offset files\n - task: CopyFiles@2\n displayName: Collect offset files\n condition: failed()\n inputs:\n sourceFolder: '$(Build.SourcesDirectory)/src/mono/mono/offsets'\n contents: '*.h.new'\n targetFolder: '$(Build.SourcesDirectory)/artifacts/obj/mono/offsetfiles/'\n\n - publish: '$(Build.SourcesDirectory)/artifacts/obj/mono/offsetfiles'\n condition: failed()\n artifact: MonoAOTOffsets_$(osGroup)$(osSubGroup)\n displayName: Upload offset files\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n # Build the whole product using Mono runtime\n # Only when libraries, mono or installer are changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n runtimeFlavor: mono\n platforms:\n - tvossimulator_x64\n - linux_x64\n - linux_arm\n - linux_arm64\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - linux_musl_x64\n - osx_x64\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # WebAssembly legs\n #\n - template: /eng/pipelines/common/templates/wasm-library-tests.yml\n parameters:\n platforms:\n - browser_wasm\n alwaysRun: ${{ variables.isRollingBuild }}\n extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)\n scenarios:\n - WasmTestOnChrome\n - WasmTestOnFirefox\n\n - template: /eng/pipelines/common/templates/wasm-library-tests.yml\n parameters:\n platforms:\n - browser_wasm_win\n alwaysRun: ${{ variables.isRollingBuild }}\n extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)\n scenarios:\n - WasmTestOnChrome\n\n # EAT Library tests - only run on linux\n - template: /eng/pipelines/common/templates/wasm-library-aot-tests.yml\n parameters:\n platforms:\n - browser_wasm\n nameSuffix: _EAT\n runAOT: false\n shouldRunSmokeOnly: false\n alwaysRun: ${{ variables.isRollingBuild }}\n extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS) /maxcpucount:2\n\n # AOT Library tests\n - template: /eng/pipelines/common/templates/wasm-library-aot-tests.yml\n parameters:\n platforms:\n - browser_wasm\n - browser_wasm_win\n nameSuffix: _Smoke_AOT\n runAOT: true\n shouldRunSmokeOnly: true\n alwaysRun: ${{ variables.isRollingBuild }}\n extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)\n\n # For Wasm.Build.Tests - runtime pack builds\n - template: /eng/pipelines/common/templates/wasm-build-only.yml\n parameters:\n platforms:\n - browser_wasm\n - browser_wasm_win\n condition: or(eq(variables.isRollingBuild, true), eq(variables.wasmSingleThreadedBuildOnlyNeededOnDefaultPipeline, true))\n nameSuffix: SingleThreaded\n extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)\n publishArtifactsForWorkload: true\n publishWBT: true\n\n - template: /eng/pipelines/common/templates/wasm-build-only.yml\n parameters:\n platforms:\n - browser_wasm\n - browser_wasm_win\n condition: or(eq(variables.isRollingBuild, true), eq(variables.wasmSingleThreadedBuildOnlyNeededOnDefaultPipeline, true))\n nameSuffix: MultiThreaded\n extraBuildArgs: /p:WasmEnableThreads=true /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)\n publishArtifactsForWorkload: true\n publishWBT: false\n\n # Browser Wasm.Build.Tests\n - template: /eng/pipelines/common/templates/browser-wasm-build-tests.yml\n parameters:\n platforms:\n - browser_wasm\n - browser_wasm_win\n alwaysRun: ${{ variables.isRollingBuild }}\n extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)\n\n # Wasm runtime tests\n - template: /eng/pipelines/common/templates/wasm-runtime-tests.yml\n parameters:\n platforms:\n - browser_wasm\n alwaysRun: ${{ variables.isRollingBuild }}\n extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)\n\n # WASI/WASM\n\n - template: /eng/pipelines/common/templates/simple-wasm-build-tests.yml\n parameters:\n platforms:\n - wasi_wasm\n - wasi_wasm_win\n extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)\n alwaysRun: ${{ variables.isRollingBuild }}\n\n #\n # Android devices\n # Build the whole product using Mono and run libraries tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - android_arm\n - android_arm64\n variables:\n # map dependencies variables to local variables\n - name: librariesContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]\n - name: monoContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'] ]\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono\n buildArgs: -s mono+libs+libs.tests+host+packs -c $(_BuildConfig) /p:ArchiveTests=true /p:RunSmokeTestsOnly=true /p:EnableAdditionalTimezoneChecks=true\n timeoutInMinutes: 480\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_$(_BuildConfig)\n condition: >-\n or(\n eq(variables['librariesContainsChange'], true),\n eq(variables['monoContainsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Android arm64 devices and x64 emulators\n # Build the whole product using CoreCLR and run functional tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: coreclr\n platforms:\n - android_x64\n - android_arm64\n variables:\n # map dependencies variables to local variables\n - name: librariesContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]\n - name: coreclrContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'] ]\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_CoreCLR\n buildArgs: -s clr.runtime+clr.alljits+clr.corelib+clr.nativecorelib+clr.tools+clr.packages+libs++libs.tests+host+packs -c $(_BuildConfig) /p:ArchiveTests=true /p:TestAssemblies=false\n timeoutInMinutes: 480\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: CoreCLR_$(_BuildConfig)\n condition: >-\n or(\n eq(variables['librariesContainsChange'], true),\n eq(variables['coreclrContainsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # iOS/tvOS devices - Full AOT + AggressiveTrimming to reduce size\n # Build the whole product using Mono and run libraries tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - ios_arm64\n - tvos_arm64\n variables:\n # map dependencies variables to local variables\n - name: librariesContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]\n - name: monoContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'] ]\n - name: illinkContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'] ]\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono\n buildArgs: -s mono+libs+libs.tests+host+packs -c $(_BuildConfig) /p:ArchiveTests=true /p:DevTeamProvisioning=- /p:RunAOTCompilation=true /p:RunSmokeTestsOnly=true /p:BuildTestsOnHelix=true /p:EnableAdditionalTimezoneChecks=true /p:UsePortableRuntimePack=false /p:EnableAggressiveTrimming=true\n timeoutInMinutes: 480\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_$(_BuildConfig)\n extraHelixArguments: /p:NeedsToBuildAppsOnHelix=true\n condition: >-\n or(\n eq(variables['librariesContainsChange'], true),\n eq(variables['monoContainsChange'], true),\n eq(variables['illinkContainsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # iOS/tvOS devices\n # Build the whole product using Native AOT and run libraries tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: coreclr\n platforms:\n - ios_arm64\n - tvos_arm64\n variables:\n # map dependencies variables to local variables\n - name: librariesContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]\n - name: coreclrContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'] ]\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_NativeAOT\n buildArgs: --cross -s clr.alljits+clr.tools+clr.nativeaotruntime+clr.nativeaotlibs+libs+libs.tests -c $(_BuildConfig) /p:ArchiveTests=true /p:RunSmokeTestsOnly=true /p:DevTeamProvisioning=- /p:BuildTestsOnHelix=true /p:UseNativeAOTRuntime=true /p:RunAOTCompilation=false /p:ContinuousIntegrationBuild=true\n timeoutInMinutes: 180\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: NativeAOT_$(_BuildConfig)\n extraHelixArguments: /p:NeedsToBuildAppsOnHelix=true\n condition: >-\n or(\n eq(variables['librariesContainsChange'], true),\n eq(variables['coreclrContainsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # MacCatalyst interp - requires AOT Compilation and Interp flags\n # Build the whole product using Mono and run libraries tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - maccatalyst_x64\n - maccatalyst_arm64\n variables:\n # map dependencies variables to local variables\n - name: librariesContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'] ]\n - name: monoContainsChange\n value: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'] ]\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono\n buildArgs: -s mono+libs+host+packs+libs.tests -c $(_BuildConfig) /p:ArchiveTests=true /p:RunSmokeTestsOnly=true /p:DevTeamProvisioning=adhoc /p:RunAOTCompilation=true /p:MonoForceInterpreter=true\n timeoutInMinutes: 180\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_$(_BuildConfig)\n condition: >-\n or(\n eq(variables['librariesContainsChange'], true),\n eq(variables['monoContainsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build Mono and Installer on LLVMAOT mode\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - linux_x64\n - linux_arm64\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_LLVMAOT\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig)\n /p:MonoEnableLLVM=true /p:MonoAOTEnableLLVM=true /p:MonoBundleLLVMOptimizer=true\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n runtimeFlavor: mono\n platforms:\n - osx_x64\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_LLVMAOT\n buildArgs: -s mono+libs+host+packs -c $(_BuildConfig)\n /p:MonoEnableLLVM=true /p:MonoAOTEnableLLVM=true /p:MonoBundleLLVMOptimizer=true\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build Mono debug\n # Only when mono changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n runtimeFlavor: mono\n buildConfig: debug\n platforms:\n - osx_x64\n - osx_arm64\n - linux_x64\n - linux_arm64\n # - linux_musl_arm64\n - windows_x64\n - windows_x86\n # - windows_arm64\n jobParameters:\n nameSuffix: Mono_Runtime\n buildArgs: -s mono -c $(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build Mono release AOT cross-compilers\n # Only when mono changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n runtimeFlavor: mono\n buildConfig: release\n platforms:\n - linux_x64\n - linux_musl_x64\n - linux_arm64\n - linux_musl_arm64\n - windows_arm64\n - windows_x64\n - osx_x64\n - osx_arm64\n jobParameters:\n buildArgs: -c $(_BuildConfig) /p:DotNetBuildMonoCrossAOT=true\n nameSuffix: CrossAOT_Mono\n runtimeVariant: crossaot\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_installer.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build and test libraries for .NET Framework\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n platforms:\n - windows_x86\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n jobParameters:\n framework: net481\n buildArgs: -s tools+libs+libs.tests -framework net481 -c $(_BuildConfig) -testscope innerloop /p:ArchiveTests=true\n nameSuffix: Libraries_NET481\n timeoutInMinutes: 150\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: NET481_$(_BuildConfig)\n extraHelixArguments: /p:BuildTargetFramework=net481\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build and test libraries for all TFMs and create packages\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - windows_x64\n jobParameters:\n buildArgs: -test -s tools.illink+libs+libs.tests -pack -c $(_BuildConfig) /p:TestAssemblies=false /p:TestPackages=true\n nameSuffix: Libraries_WithPackages\n timeoutInMinutes: 150\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Installer Build and Test\n # These are always built since they only take like 15 minutes\n # we expect these to be done before we finish libraries or coreclr testing.\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - windows_x86\n jobParameters:\n nameSuffix: Installer_Build_And_Test\n buildArgs: -s host+packs -c $(_BuildConfig) -lc Release -rc Release -test\n dependsOnGlobalBuilds:\n - nameSuffix: CoreCLR_Libraries\n buildConfig: release\n preBuildSteps:\n - template: /eng/pipelines/common/download-artifact-step.yml\n parameters:\n artifactName: CoreCLR_Libraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_Release\n artifactFileName: CoreCLR_Libraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_Release$(archiveExtension)\n unpackFolder: $(Build.SourcesDirectory)/artifacts/bin\n displayName: 'unified artifacts'\n enablePublishTestResults: true\n testRunTitle: Installer-$(osGroup)$(osSubgroup)_$(archType)\n postBuildSteps:\n - template: /eng/pipelines/installer/steps/upload-job-artifacts.yml\n parameters:\n name: $(osGroup)$(osSubgroup)_$(archType)\n condition:\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n - osx_x64\n - linux_x64\n jobParameters:\n nameSuffix: Installer_Build_And_Test\n buildArgs: -s host+packs -c $(_BuildConfig) -lc ${{ variables.debugOnPrReleaseOnRolling }} -rc Release -test\n dependsOnGlobalBuilds:\n - nameSuffix: CoreCLR_Libraries\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n preBuildSteps:\n - template: /eng/pipelines/common/download-artifact-step.yml\n parameters:\n artifactName: CoreCLR_Libraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(debugOnPrReleaseOnRolling)\n artifactFileName: CoreCLR_Libraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(debugOnPrReleaseOnRolling)$(archiveExtension)\n unpackFolder: $(Build.SourcesDirectory)/artifacts/bin\n displayName: 'unified artifacts'\n enablePublishTestResults: true\n testRunTitle: Installer-$(osGroup)$(osSubgroup)_$(archType)\n postBuildSteps:\n - template: /eng/pipelines/installer/steps/upload-job-artifacts.yml\n parameters:\n name: $(osGroup)$(osSubgroup)_$(archType)\n condition:\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_non_mono_and_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build the whole product using Mono and run runtime tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - osx_x64\n - linux_arm64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_Minijit_RuntimeTests\n runtimeVariant: minijit\n buildArgs: -s mono+libs+clr.hosts+clr.iltools -c Release\n timeoutInMinutes: 180\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_Release\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n\n #\n # Build the whole product using Mono and run runtime tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - windows_x64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_Minijit_RuntimeTests\n runtimeVariant: minijit\n buildArgs: -s mono+libs+clr.hosts+clr.iltools -c Release -lc ${{ variables.debugOnPrReleaseOnRolling }}\n timeoutInMinutes: 180\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_Release\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n parameters:\n liveLibrariesBuildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n\n #\n # Mono CoreCLR runtime Test executions using live libraries in interpreter mode\n # Only when Mono is changed\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - osx_x64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_Interpreter_RuntimeTests\n runtimeVariant: monointerpreter\n buildArgs: -s mono+libs+clr.hosts+clr.iltools -c Release\n timeoutInMinutes: 180\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_Release\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n #\n # Mono CoreCLR runtime Test executions using live libraries and LLVM AOT\n # Only when Mono is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms:\n - linux_x64\n # Disabled pending outcome of https://github.com/dotnet/runtime/issues/60234 investigation\n #- linux_arm64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n testGroup: innerloop\n nameSuffix: AllSubsets_Mono_LLVMAot_RuntimeTests\n runtimeVariant: llvmaot\n buildArgs: -s mono+libs+clr.hosts+clr.iltools -c Release /p:MonoEnableLLVM=true /p:MonoAOTEnableLLVM=true /p:MonoBundleLLVMOptimizer=true\n timeoutInMinutes: 180\n\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n llvmAotStepContainer: linux_x64_llvmaot\n testRunNamePrefixSuffix: Mono_Release\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n\n #\n # CoreCLR Test builds using live libraries release build\n # Only when CoreCLR is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: innerloop\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # CoreCLR Test executions using live libraries\n # Only when CoreCLR is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - linux_arm\n - windows_x86\n - windows_arm64\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: innerloop\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: CoreCLR_ReleaseLibraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n unifiedBuildNameSuffix: CoreCLR_ReleaseLibraries\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - osx_x64\n - linux_x64\n - linux_arm64\n - windows_x64\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: innerloop\n liveLibrariesBuildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n unifiedArtifactsName: Libraries_CheckedCoreCLR_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(debugOnPrReleaseOnRolling)\n unifiedBuildNameSuffix: Libraries_CheckedCoreCLR\n unifiedBuildConfigOverride: ${{ variables.debugOnPrReleaseOnRolling }}\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_runtimetests.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - osx_arm64\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: innerloop\n liveLibrariesBuildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n unifiedArtifactsName: Libraries_CheckedCoreCLR_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(debugOnPrReleaseOnRolling)\n unifiedBuildNameSuffix: Libraries_CheckedCoreCLR\n unifiedBuildConfigOverride: ${{ variables.debugOnPrReleaseOnRolling }}\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr_AppleSilicon.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Libraries Release Test Execution against a release coreclr runtime\n # Only when the PR contains a libraries change\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/libraries/run-test-job.yml\n buildConfig: Release\n platforms:\n - windows_x86\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n jobParameters:\n isOfficialBuild: false\n testScope: innerloop\n liveRuntimeBuildConfig: release\n unifiedArtifactsName: CoreCLR_Libraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n helixArtifactsName: CoreCLR_Libraries_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n unifiedBuildNameSuffix: CoreCLR_Libraries\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Libraries Debug Test Execution against a release coreclr runtime\n # Only when the PR contains a libraries change\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/libraries/run-test-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - windows_x64\n - osx_x64\n - linux_x64\n - linux_musl_x64\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n jobParameters:\n isOfficialBuild: false\n testScope: innerloop\n liveRuntimeBuildConfig: release\n unifiedArtifactsName: CoreCLR_Libraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(debugOnPrReleaseOnRolling)\n helixArtifactsName: CoreCLR_Libraries_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(debugOnPrReleaseOnRolling)\n unifiedBuildNameSuffix: CoreCLR_Libraries\n unifiedBuildConfigOverride: ${{ variables.debugOnPrReleaseOnRolling }}\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n # The next three jobs run checked coreclr + <either debug or release in PR> libraries tests.\n # The matrix looks like the following, where the right columns specify which configurations\n # the libraries tests are built in.\n # ________________________________________\n # | Platform | PR | Rolling |\n # | ---------------- | ------- | ------- |\n # | linux-arm64 | Debug | Release |\n # | windows-x86 | Debug | Release |\n # | linux-musl-x64 | Debug | Release |\n # | OSX-x64 | Debug | Release |\n # | linux-musl-arm | Release | Release |\n # | linux-musl-arm64 | Release | Release |\n # | linux-x64 | Release | Release |\n # | windows-x64 | Release | Release |\n\n #\n # Debug (PR) / Release (rolling) Libraries Test Execution against a checked runtime\n # Only when the PR contains a coreclr change\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/libraries/run-test-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - linux_arm64\n - windows_x86\n - linux_musl_x64\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n helixQueueGroup: libraries\n jobParameters:\n testScope: innerloop\n liveRuntimeBuildConfig: checked\n unifiedArtifactsName: Libraries_CheckedCoreCLR_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n helixArtifactsName: Libraries_CheckedCoreCLR_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n unifiedBuildNameSuffix: Libraries_CheckedCoreCLR\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Release Libraries Test Execution against a checked runtime\n # Only if CoreCLR or Libraries is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/libraries/run-test-job.yml\n buildConfig: Release\n platforms:\n - linux_musl_arm\n - linux_musl_arm64\n - linux_x64\n - windows_x64\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n helixQueueGroup: libraries\n jobParameters:\n testScope: innerloop\n liveRuntimeBuildConfig: checked\n unifiedArtifactsName: CoreCLR_ReleaseLibraries_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_Checked\n helixArtifactsName: CoreCLR_ReleaseLibraries_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_Checked\n unifiedBuildNameSuffix: CoreCLR_ReleaseLibraries\n unifiedBuildConfigOverride: checked\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/libraries/run-test-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - osx_x64\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n helixQueueGroup: libraries\n jobParameters:\n testScope: innerloop\n liveRuntimeBuildConfig: checked\n unifiedArtifactsName: Libraries_CheckedCoreCLR_BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n helixArtifactsName: Libraries_CheckedCoreCLR_TestArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n unifiedBuildNameSuffix: Libraries_CheckedCoreCLR\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_coreclr.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build and test Mono Interpreter with the libraries testss\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n runtimeFlavor: mono\n runtimeVariant: monointerpreter\n platforms:\n - linux_x64\n #- osx_x64\n #- windows_x64\n jobParameters:\n testGroup: innerloop\n nameSuffix: Mono_Interpreter_LibrariesTests\n buildArgs: -s mono+libs+libs.tests -rc Release -c $(_BuildConfig) /p:ArchiveTests=true\n timeoutInMinutes: 480\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_Interpreter_$(_BuildConfig)\n interpreter: true\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n #\n # Build and test Mono Minijit with the libraries testss\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n runtimeFlavor: mono\n platforms:\n - linux_arm64\n - linux_x64\n - osx_x64\n #- windows_x64\n jobParameters:\n testGroup: innerloop\n nameSuffix: Mono_MiniJIT_LibrariesTests\n buildArgs: -s mono+libs+libs.tests -rc Release -c $(_BuildConfig) /p:ArchiveTests=true\n timeoutInMinutes: 480\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Mono_Minijit_$(_BuildConfig)\n condition: >-\n or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_libraries.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_mono_excluding_wasm.containsChange'], true),\n eq(variables['isRollingBuild'], true))\n\n - stage: SourceBuild\n displayName: Source Build Validation\n dependsOn: []\n condition: eq(variables['isRollingBuild'], true)\n jobs:\n #\n # Sourcebuild legs\n # We have 3 important legs for source-build:\n # - Centos.9 (ensures that known non-portable RID is working)\n # - Linux-x64 portable (used for dependency flow and downstream PR verification)\n # - Banana.24 - Non-existent RID to ensure we don't break RIDs we don't know about.\n #\n # Running all of these everywhere is wasteful. Run Banana.24 and CentOS.9 in rolling CI,\n # Run Linux-x64 in PR.\n - template: /eng/common/templates/jobs/source-build.yml\n parameters:\n platforms:\n - name: CentOS9\n baseOS: linux-x64\n targetRID: centos.9-x64\n portableBuild: false\n container: SourceBuild_centos_x64\n - name: NonexistentRID\n baseOS: linux-x64\n targetRID: banana.24-x64\n portableBuild: false\n container: SourceBuild_centos_x64\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtime.yml | runtime.yml | YAML | 84,652 | 0.75 | 0.007234 | 0.111949 | awesome-app | 92 | 2023-09-20T01:23:56.409209 | Apache-2.0 | false | 122c5a3c27ba0e3b0aa997c90a4dc90a |
trigger:\n batch: true\n branches:\n include:\n - feature/*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nvariables:\n- template: /eng/pipelines/common/variables.yml\n parameters:\n templatePath: 'templates-official'\n\n- ${{ if and(ne(variables['System.TeamProject'], 'public'), ne(variables['Build.Reason'], 'PullRequest')) }}:\n - name: TeamName\n value: dotnet-core\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml@self\n parameters:\n isOfficialBuild: true\n stages:\n - stage: Build\n jobs:\n #\n # Build the whole product with Release CoreCLR\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: release\n platforms:\n - linux_x64\n - windows_x64\n jobParameters:\n templatePath: 'templates-official'\n isOfficialBuild: true\n timeoutInMinutes: 180\n buildArgs: -s clr+libs+hosts+packs -c $(_BuildConfig)\n postBuildSteps:\n # Upload the results.\n - template: /eng/pipelines/common/upload-intermediate-artifacts-step.yml\n parameters:\n name: $(osGroup)$(osSubgroup)_$(archType)\n\n #\n # Build libraries AllConfigurations for packages\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n platforms:\n - windows_x64\n jobParameters:\n templatePath: 'templates-official'\n buildArgs: -s tools+libs -allConfigurations -c $(_BuildConfig) /p:BuildAllConfigurations=true /p:TestAssemblies=false /p:TestPackages=true\n nameSuffix: Libraries_AllConfigurations\n isOfficialBuild: true\n postBuildSteps:\n - template: /eng/pipelines/common/upload-intermediate-artifacts-step.yml\n parameters:\n name: Libraries_AllConfigurations\n timeoutInMinutes: 95\n\n - template: /eng/pipelines/official/stages/publish.yml\n parameters:\n isOfficialBuild: true\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtimelab-official.yml | runtimelab-official.yml | YAML | 2,561 | 0.8 | 0.025641 | 0.094595 | react-lib | 48 | 2025-06-09T08:35:46.032628 | Apache-2.0 | false | 5326d775b31e9be39d94fd58fba76e69 |
# Setting batch to true, triggers one build at a time.\n# if there is a push while a build in progress, it will wait,\n# until the running build finishes, and produce a build with all the changes\n# that happened during the last build.\ntrigger:\n batch: true\n branches:\n include:\n - feature/*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\npr:\n branches:\n include:\n - feature/*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n - ${{ if and(ne(variables['System.TeamProject'], 'public'), ne(variables['Build.Reason'], 'PullRequest')) }}:\n - name: TeamName\n value: dotnet-core\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n #\n # Build the whole product with Checked CoreCLR and run runtime tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - windows_x64\n jobParameters:\n timeoutInMinutes: 200\n buildArgs: -s clr+libs+clr.hosts+packs -c debug -rc $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: CoreCLR_$(_BuildConfig)\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n\n #\n # Build the whole product with Release CoreCLR and run libraries tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: release\n platforms:\n - linux_x64\n - windows_x64\n jobParameters:\n timeoutInMinutes: 180\n buildArgs: -s clr+libs+libs.tests+clr.hosts+packs -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: Libraries_$(_BuildConfig)\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n\n #\n # Build and test libraries AllConfigurations\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: ${{ variables.debugOnPrReleaseOnRolling }}\n platforms:\n - windows_x64\n jobParameters:\n buildArgs: -test -s tools+libs+libs.tests -c $(_BuildConfig) /p:BuildAllConfigurations=true /p:TestAssemblies=false /p:TestPackages=true\n nameSuffix: Libraries_AllConfigurations\n timeoutInMinutes: 150\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\runtimelab.yml | runtimelab.yml | YAML | 3,816 | 0.8 | 0.027273 | 0.12381 | node-utils | 278 | 2023-12-18T07:21:47.574681 | MIT | false | f31f39eaec167ce11dce9988060fa738 |
parameters:\n unpackFolder: ''\n cleanUnpackFolder: true\n artifactFileName: ''\n artifactName: ''\n displayName: ''\n\nsteps:\n # Download artifact\n - task: DownloadBuildArtifacts@0\n displayName: 'Download ${{ parameters.displayName }}'\n inputs:\n buildType: current\n downloadType: single\n downloadPath: '$(Build.SourcesDirectory)/__download__'\n artifactName: '${{ parameters.artifactName }}'\n checkDownloadedFiles: true\n\n # Unzip artifact\n - task: ExtractFiles@1\n displayName: 'Unzip ${{ parameters.displayName }}'\n inputs:\n archiveFilePatterns: $(Build.SourcesDirectory)/__download__/${{ parameters.artifactName }}/**/${{ parameters.artifactFileName }}\n destinationFolder: ${{ parameters.unpackFolder }}\n cleanDestinationFolder: ${{ parameters.cleanUnpackFolder }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\download-artifact-step.yml | download-artifact-step.yml | YAML | 820 | 0.8 | 0 | 0.086957 | vue-tools | 808 | 2023-12-04T04:11:12.250272 | BSD-3-Clause | false | ab0773e041ccc5c55ef26a002f3c8775 |
parameters:\n unpackFolder: ''\n cleanUnpackFolder: true\n artifactFileName: ''\n artifactName: ''\n displayName: ''\n buildId: ''\n branchName: ''\n pipeline: ''\n project: 'public' # 'internal' or 'public'\n\nsteps:\n # Download artifact\n - task: DownloadBuildArtifacts@0\n displayName: 'Download specific ${{ parameters.displayName }}'\n inputs:\n buildType: specific\n project: ${{ parameters.project }}\n pipeline: ${{ parameters.pipeline }}\n buildVersionToDownload: specific\n branchName: ${{ parameters.branchName }}\n buildId: ${{ parameters.buildId }}\n downloadType: single\n downloadPath: '$(Build.SourcesDirectory)/__download__'\n artifactName: '${{ parameters.artifactName }}'\n\n # Unzip artifact\n - task: ExtractFiles@1\n displayName: 'Unzip specific ${{ parameters.displayName }}'\n inputs:\n archiveFilePatterns: $(Build.SourcesDirectory)/__download__/${{ parameters.artifactName }}/${{ parameters.artifactFileName }}\n destinationFolder: ${{ parameters.unpackFolder }}\n cleanDestinationFolder: ${{ parameters.cleanUnpackFolder }} | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\download-specific-artifact-step.yml | download-specific-artifact-step.yml | YAML | 1,104 | 0.8 | 0 | 0.064516 | react-lib | 898 | 2024-07-06T19:58:08.136325 | Apache-2.0 | false | 42d5c23e2dd64798fb48e486a71ff481 |
# This step template evaluates changes in dependencies defined in `eng/Version.Details.xml`.\n# For more information on how this works works look at evaluate-changed-darc-deps.sh docs\n# at the beginning of that file.\n\nparameters:\n subsetName: ''\n # Array containing the arguments that are to be passed down to evaluate-changed-paths.sh\n # Note that --azurevariable is always set to the dependency name, no need to pass it down.\n arguments: []\n\nsteps:\n - script: eng/pipelines/evaluate-changed-darc-deps.sh\n ${{ join(' ', parameters.arguments) }}\n displayName: Evaluate eng/Version.Details.xml for dependency changes\n name: DarcDependenciesChanged\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\evaluate-changed-darc-deps.yml | evaluate-changed-darc-deps.yml | YAML | 668 | 0.8 | 0.066667 | 0.384615 | node-utils | 364 | 2023-08-03T20:50:15.172872 | BSD-3-Clause | false | e5f6ceac0f4f6a3dca498d17c2ee3ac7 |
# This step template evaluates git changes using git based on a include/exclude path filter.\n# For more information on how the path evaluation works look at evaluate-changed-paths.sh docs\n# at the beginning of that file.\n\nparameters:\n # Name for the subset that we're evaluating changes for.\n # It is required to name the step correctly and so the variable created can be consumable.\n subsetName: ''\n # Array containing the arguments that are to be passed down to evaluate-changed-paths.sh\n # Note that --azurevariable is always set to containschange, no need to pass it down.\n arguments: []\n\nsteps:\n - ${{ if ne(parameters.arguments[0], '') }}:\n - script: >-\n eng/pipelines/evaluate-changed-paths.sh\n --azurevariable containsChange\n ${{ join(' ', parameters.arguments) }}\n displayName: Evaluate paths for ${{ parameters.subsetName }}\n name: ${{ format('SetPathVars_{0}', parameters.subsetName) }} # need a name to access output variable\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\evaluate-changed-paths.yml | evaluate-changed-paths.yml | YAML | 997 | 0.95 | 0.2 | 0.388889 | react-lib | 156 | 2023-08-04T09:23:24.193717 | Apache-2.0 | false | 5ab0c5299c7f93f4a14bdc2c390c40ae |
# Template to evaluate common paths in different pipelines.\nparameters:\n extraSubsets: ''\n\n # _* parameters are being used as a const array,\n # do not set them when using the template\n _const_paths:\n _wasm_specific_only: [\n eng/testing/bump-chrome-version.proj\n eng/testing/BrowserVersions.props\n eng/testing/WasmRunner*\n eng/testing/WasiRunner*\n eng/testing/scenarios/BuildWasiAppsJobsList.txt\n eng/testing/scenarios/BuildWasmAppsJobsList.txt\n eng/testing/tests.browser.targets\n eng/testing/tests.was*.targets\n eng/testing/was*provisioning.targets\n eng/testing/workloads-browser.targets\n eng/testing/workloads-testing.targets\n eng/testing/workloads-wasi.targets\n eng/testing/workloads-wasm.targets\n src/libraries/sendtohelix-browser.targets\n src/libraries/sendtohelix-wasi.targets\n src/libraries/sendtohelix-wasm.targets\n src/libraries/System.Runtime.InteropServices.JavaScript/src/*\n src/mono/mono/**/*wasm*\n src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Sdk/*\n src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk/*\n src/mono/nuget/Microsoft.NET.Runtime.wasm.Sample.Mono/*\n src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/*\n src/mono/nuget/Microsoft.NETCore.BrowserDebugHost.Transport/*\n src/mono/nuget/Microsoft.NET.Runtime.WorkloadTesting.Internal/**/*\n src/mono/nuget/Microsoft.NET.Workload*\n src/mono/sample/wasm/*\n src/mono/browser/*\n src/mono/wasi/*\n src/mono/wasm/*\n src/mono/mono/mini/interp/jiterpreter*\n src/tasks/WasmAppBuilder/*\n src/tasks/WasmBuildTasks/*\n src/tasks/WorkloadBuildTasks/*\n src/tasks/Microsoft.NET.Sdk.WebAssembly.Pack.Tasks/*\n src/tasks/Microsoft.NET.WebAssembly.Webcil/*\n src/tests/Common/wasm-test-runner/*\n ]\n _wasm_pipelines: [\n eng/pipelines/**/*wasm*\n ]\n _wasm_src_native: [\n src/native/minipal/*\n src/native/libs/CMakeLists.txt\n src/native/libs/configure.cmake\n src/native/libs/build*\n src/native/libs/Common/*\n src/native/libs/System.Globalization.Native/*\n src/native/libs/System.IO.Compression.Native/*\n src/native/libs/System.Native/*\n ]\n _wasm_chrome: [\n eng/testing/bump-chrome-version.proj\n eng/testing/BrowserVersions.props\n ]\n _perf_pipeline_specific_only: [\n eng/pipelines/performance/*\n eng/testing/performance/*\n ]\n\n # src/workloads is only used in runtime-official builds\n # where evaluate-paths is not used\n _always_exclude: [\n eng/pipelines/common/evaluate-default-paths.yml\n '*.md'\n LICENSE.TXT\n PATENTS.TXT\n THIRD-PARTY-NOTICES.TXT\n src/workloads/*\n src/mono/wasm/sln/*\n ]\n\njobs:\n- template: /eng/pipelines/common/evaluate-paths-job.yml\n parameters:\n paths:\n - subset: coreclr\n include:\n - src/libraries/System.Private.CoreLib/*\n - src/native/libs/Common/*\n - src/native/libs/System.Globalization.Native/*\n - src/native/libs/System.IO.Compression.Native/*\n exclude:\n - eng/Version.Details.xml\n - docs/*\n - src/installer/*\n - src/mono/*\n - src/libraries/*\n - src/native/libs/*\n - src/tests/*\n - src/tools/*\n - eng/pipelines/installer/*\n - eng/pipelines/mono/*\n - eng/pipelines/libraries/*\n - ${{ parameters._const_paths._wasm_specific_only }}\n - ${{ parameters._const_paths._wasm_pipelines }}\n - ${{ parameters._const_paths._always_exclude }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n\n - subset: mono_excluding_wasm\n include:\n - src/libraries/System.Private.CoreLib/*\n - src/native/libs/Common/*\n - src/native/libs/System.Globalization.Native/*\n - src/native/libs/System.IO.Compression.Native/*\n exclude:\n - ${{ parameters._const_paths._wasm_specific_only }}\n - ${{ parameters._const_paths._wasm_pipelines }}\n - ${{ parameters._const_paths._always_exclude }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n\n - eng/Version.Details.xml\n - docs/*\n - src/installer/*\n - src/coreclr/*\n - src/libraries/*\n - src/native/libs/*\n - src/tests/*\n - src/tools/*\n - eng/pipelines/installer/*\n - eng/pipelines/coreclr/*\n - eng/pipelines/libraries/*\n\n - subset: libraries\n exclude:\n - eng/Version.Details.xml\n - docs/*\n - src/installer/*\n - src/mono/*\n - src/coreclr/*\n - src/tests/*\n - src/tools/*\n - src/native/eventpipe/*\n - eng/pipelines/coreclr/*\n - eng/pipelines/mono/*\n - eng/pipelines/installer/*\n - ${{ parameters._const_paths._wasm_specific_only }}\n - ${{ parameters._const_paths._wasm_pipelines }}\n - ${{ parameters._const_paths._always_exclude }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n\n - subset: runtimetests\n combined: true\n include:\n - src/tests/*\n exclude:\n - ${{ parameters._const_paths._wasm_specific_only }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n\n - subset: tools_illink\n include:\n - src/tools/illink/*\n - src/coreclr/tools/aot/ILCompiler.DependencyAnalysisFramework/*\n - src/coreclr/tools/ILVerification/*\n - global.json\n\n - subset: tools_cdacreader\n include:\n - src/native/managed/cdacreader/*\n\n - subset: installer\n include:\n exclude:\n - eng/Version.Details.xml\n - docs/*\n - src/coreclr/*\n - src/mono/*\n - src/libraries/*\n - src/tests/*\n - src/tools/*\n - src/native/eventpipe/*\n - eng/pipelines/coreclr/*\n - eng/pipelines/mono/*\n - eng/pipelines/libraries/*\n - ${{ parameters._const_paths._wasm_specific_only }}\n - ${{ parameters._const_paths._wasm_pipelines }}\n - ${{ parameters._const_paths._always_exclude }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n\n # We have limited Apple Silicon testing capacity\n # We want PR testing on a narrower set of changes\n # Specifically runtime directories which are higher risk of\n # introducing a platform specific regression\n - subset: coreclr_AppleSilicon\n include:\n - src/coreclr/dlls/*\n - src/coreclr/gc/*\n - src/coreclr/gcinfo/*\n - src/coreclr/inc/*\n - src/coreclr/jit/*\n - src/coreclr/pal/*\n - src/coreclr/vm/*\n\n #\n # ** WASM **\n # Changes in *only* Wasm.Build.Tests, debugger, or runtime-tests are very\n # self-contained, so we try to trigger only those relevants tests\n #\n - subset: wasmbuildtests\n combined: true\n include:\n - eng/Version.Details.xml\n - eng/Versions.props\n - eng/testing/scenarios/BuildWasiAppsJobsList.txt\n - eng/testing/scenarios/BuildWasmAppsJobsList.txt\n - eng/testing/tests.browser.targets\n - eng/testing/tests.was*.targets\n - src/mono/nuget/Microsoft.NET.Runtime.WorkloadTesting.Internal/Sdk/WorkloadTesting.Core.targets\n - eng/testing/workloads-browser.targets\n - eng/testing/workloads-testing.targets\n - eng/testing/workloads-wasi.targets\n - eng/testing/workloads-wasm.targets\n - src/installer/pkg/sfx/Microsoft.NETCore.App/*\n - src/libraries/sendtohelix*\n - src/libraries/System.Net.WebSockets.Client/*\n - src/libraries/System.Runtime.InteropServices/*\n - src/libraries/System.Runtime.InteropServices.JavaScript/*\n - src/mono/mono/*\n - src/mono/mono.proj\n - src/mono/monoaotcross.proj\n - src/mono/nuget/Microsoft.NET.Runtime.MonoAOTCompiler.Task/*\n - src/mono/nuget/Microsoft.NET.Runtime.MonoTargets.Sdk/*\n - src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Sdk/*\n - src/mono/nuget/Microsoft.NET.Runtime.WebAssembly.Wasi.Sdk/*\n - src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/*\n - src/mono/nuget/Microsoft.NET.Runtime.wasm.Sample.Mono/*\n - src/mono/nuget/Microsoft.NET.Workload*\n - src/mono/nuget/Microsoft.NETCore.BrowserDebugHost.Transport/*\n - src/mono/browser/build/*\n - src/mono/browser/emscripten-version.txt\n - src/mono/browser/runtime/*\n - src/mono/wasm/build/*\n - src/mono/wasm/host/*\n - src/mono/wasm/templates/*\n - src/mono/wasm/testassets/*\n - src/mono/wasm/Wasm.Build.Tests/*\n - src/mono/wasi/build/*\n - src/mono/wasi/runtime/*\n - src/mono/wasi/testassets/*\n - src/mono/wasi/Wasi.Build.Tests/*\n - ${{ parameters._const_paths._wasm_chrome }}\n - ${{ parameters._const_paths._wasm_src_native }}\n - src/tasks/*\n - ${{ parameters._const_paths._wasm_pipelines }}\n exclude:\n - ${{ parameters._const_paths._always_exclude }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n\n # wasm/runtimetests need to be run\n - subset: wasm_runtimetests\n combined: true\n include:\n - src/tests/*\n - src/mono/*\n - ${{ parameters._const_paths._wasm_src_native }}\n exclude:\n - src/mono/nuget/*\n - src/mono/sample/*\n - src/mono/tests/*\n - src/mono/tools/*\n - src/mono/wasi/*\n - src/mono/browser/debugger/*\n - src/mono/wasm/host/*\n - src/mono/wasm/templates/*\n - src/mono/wasm/testassets/*\n - src/mono/wasm/Wasm.Build.Tests/*\n - ${{ parameters._const_paths._wasm_pipelines }}\n - ${{ parameters._const_paths._always_exclude }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n\n # Wasm except Wasm.build.Tests, Wasi.build.Tests and debugger\n - subset: wasm_specific_except_wbt_dbg\n combined: true\n include:\n - ${{ parameters._const_paths._wasm_specific_only }}\n - ${{ parameters._const_paths._wasm_pipelines }}\n # other paths that should also trigger wasm jobs\n - src/mono/*\n exclude:\n - eng/testing/scenarios/BuildWasiAppsJobsList.txt\n - eng/testing/scenarios/BuildWasmAppsJobsList.txt\n src/mono/nuget/Microsoft.NET.Runtime.WorkloadTesting.Internal/Sdk/WorkloadTesting.Core.targets\n - eng/testing/workloads-browser.targets\n - eng/testing/workloads-testing.targets\n - eng/testing/workloads-wasi.targets\n - eng/testing/workloads-wasm.targets\n - src/mono/mono/component/mini-wasm-debugger.c\n - src/mono/browser/debugger/*\n - src/mono/wasm/host/*\n - src/mono/wasm/templates/*\n - src/mono/wasm/testassets/*\n - src/mono/wasm/Wasm.Build.Tests/*\n - src/mono/wasi/build/*\n - src/mono/wasi/runtime/*\n - src/mono/wasi/testassets/*\n - src/mono/wasi/Wasi.Build.Tests/*\n - src/mono/nuget/Microsoft.NET.Runtime*\n src/mono/nuget/Microsoft.NET.Sdk.WebAssembly.Pack/*\n - src/mono/nuget/Microsoft.NET.Workload*\n - src/mono/nuget/Microsoft.NETCore.BrowserDebugHost.Transport/*\n - ${{ parameters._const_paths._always_exclude }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n\n - subset: wasm_chrome\n include:\n - ${{ parameters._const_paths._wasm_chrome }}\n\n # anything other than mono, or wasm specific paths\n - subset: non_mono_and_wasm\n exclude:\n - eng/pipelines/mono/*\n - ${{ parameters._const_paths._wasm_specific_only }}\n - ${{ parameters._const_paths._wasm_pipelines }}\n - ${{ parameters._const_paths._always_exclude }}\n - ${{ parameters._const_paths._perf_pipeline_specific_only }}\n - eng/testing/tests.mobile.targets\n - src/mono/*\n - src/tasks/AndroidAppBuilder/*\n - src/tasks/AotCompilerTask/*\n - src/tasks/AppleAppBuilder/*\n - src/tasks/MonoTargetsTasks/*\n - src/tasks/WasmAppBuilder/*\n - src/tasks/WasmBuildTasks/*\n - src/tasks/WorkloadBuildTasks/*\n\n - ${{ if ne(parameters.extraSubsets, '') }}:\n - ${{ parameters.extraSubsets }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\evaluate-default-paths.yml | evaluate-default-paths.yml | YAML | 11,983 | 0.8 | 0.005988 | 0.056782 | python-kit | 994 | 2024-08-20T19:05:26.885458 | Apache-2.0 | false | 493845cbe6bbc899ede7fd08a93f8af3 |
### Job used to evaluate changed paths on a pull request to emit variables to condition jobs based on paths.\n\nparameters:\n # Object containing subset include and exclude paths in an array form.\n # Scenarios:\n # 1. exclude paths are specified\n # Will include all paths except the ones in the exclude list.\n # 2. include paths are specified\n # Will only include paths specified in the list.\n # 3. exclude + include:\n # 1st we evaluate changes for all paths except ones in excluded list. If we can't find\n # any applicable changes like that, then we evaluate changes for included paths\n # if any of these two finds changes, then a variable will be set to true.\n # In order to consume this variable you need to reference it via: $[ stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_<subset>.containschange'] ]\n #\n # Array form example\n # paths:\n # - subset: coreclr\n # include:\n # - src/libraries/System.Private.CoreLib/*\n # exclude:\n # - src/libraries/*\n #\n # This example will include ALL path changes under src/libraries/ except the ones under src/libraries/*!System.Private.CoreLib/*\n paths: []\n\njobs:\n - job: evaluate_paths\n displayName: Evaluate Paths\n pool:\n vmImage: 'ubuntu-latest'\n\n steps:\n - checkout: self\n clean: true\n fetchDepth: 2\n\n - ${{ if ne(parameters.paths[0], '') }}:\n - ${{ each path in parameters.paths }}:\n - template: evaluate-changed-paths.yml\n parameters:\n subsetName: ${{ path.subset }}\n arguments:\n - ${{ if eq(path.combined, true) }}:\n - --combined\n # The commit that we're building is always a merge commit that is merging into the target branch.\n # So the first parent of the commit is on the target branch and the second parent is on the source branch.\n - --difftarget HEAD^1\n - --subset ${{ path.subset }}\n - ${{ if ne(path.include[0], '') }}:\n - --includepaths '${{ join('+', path.include) }}'\n - ${{ if ne(path.exclude[0], '') }}:\n - --excludepaths '${{ join('+', path.exclude) }}'\n\n - template: evaluate-changed-darc-deps.yml\n parameters:\n arguments:\n # The commit that we're building is always a merge commit that is merging into the target branch.\n # So the first parent of the commit is on the target branch and the second parent is on the source branch.\n - --difftarget HEAD^1\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\evaluate-paths-job.yml | evaluate-paths-job.yml | YAML | 2,520 | 0.8 | 0.116667 | 0.472727 | node-utils | 501 | 2024-01-19T07:41:04.172657 | GPL-3.0 | false | 0a2013468f5a358db4ab417e58b02cc9 |
parameters:\n buildConfig: ''\n nameSuffix: ''\n buildArgs: ''\n archType: ''\n hostedOs: ''\n osGroup: ''\n osSubgroup: ''\n container: ''\n crossBuild: false\n variables: []\n targetRid: ''\n timeoutInMinutes: ''\n dependsOn: []\n # The following parameter is used to specify dependencies on other global build for the same platform.\n # We provide this mechanism to allow for global builds to depend on other global builds and use the multiplexing\n # that platform-matrix.yml enables.\n # Each item can have the following properties:\n # - nameSuffix: The suffix of the job name to depend on.\n # - buildConfig: The configuration of the job to depend on.\n dependsOnGlobalBuilds: []\n pool: ''\n platform: ''\n condition: true\n useContinueOnErrorDuringBuild: false\n shouldContinueOnError: false\n isOfficialBuild: false\n runtimeFlavor: 'coreclr'\n runtimeVariant: ''\n helixQueues: ''\n enablePublishTestResults: false\n testResultsFormat: ''\n postBuildSteps: []\n extraVariablesTemplates: []\n preBuildSteps: []\n templatePath: 'templates'\n templateContext: ''\n disableComponentGovernance: ''\n\njobs:\n- template: /eng/common/${{ parameters.templatePath }}/job/job.yml\n parameters:\n ${{ if eq(parameters.hostedOs, '') }}:\n name: ${{ format('build_{0}{1}_{2}_{3}_{4}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig, parameters.nameSuffix) }}\n displayName: ${{ format('{0}{1}-{2} {3} {4} {5}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig, parameters.nameSuffix, parameters.runtimeVariant) }}\n ${{ if ne(parameters.hostedOs, '') }}:\n name: ${{ format('build_{0}{1}_{2}_{3}_{4}_{5}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.hostedOs, parameters.buildConfig, parameters.nameSuffix) }}\n displayName: ${{ format('{0}{1}-{2} {3} {4} {5} {6}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.hostedOs, parameters.buildConfig, parameters.nameSuffix, parameters.runtimeVariant) }}\n pool: ${{ parameters.pool }}\n container: ${{ parameters.container }}\n condition: and(succeeded(), ${{ parameters.condition }})\n timeoutInMinutes: ${{ parameters.timeoutInMinutes }}\n enablePublishTestResults: ${{ parameters.enablePublishTestResults }}\n testResultsFormat: ${{ parameters.testResultsFormat }}\n enableMicrobuild: ${{ parameters.isOfficialBuild }}\n enableMicrobuildForMacAndLinux: ${{ parameters.isOfficialBuild }}\n\n templateContext:\n ${{ if ne(parameters.templateContext, '') }}:\n ${{ each pair in parameters.templateContext }}:\n ${{ if notIn(pair.key, 'outputs') }}:\n ${{ pair.key }}: ${{ pair.value }}\n outputs:\n - ${{ if ne(parameters.templateContext.outputs, '') }}:\n - ${{ each output in parameters.templateContext.outputs }}:\n ${{ output.key }}: ${{ output.value }}\n - ${{ if eq(parameters.isOfficialBuild, true) }}:\n - output: pipelineArtifact\n displayName: 'Publish Pipeline Artifacts'\n ${{ if eq(parameters.hostedOs, '') }}:\n artifactName: ${{ format('build_{0}{1}_{2}_{3}_{4}_Artifacts', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig, parameters.nameSuffix) }}\n ${{ if ne(parameters.hostedOs, '') }}:\n artifactName: ${{ format('build_{0}{1}_{2}_{3}_{4}_{5}_Artifacts', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.hostedOs, parameters.buildConfig, parameters.nameSuffix) }}\n targetPath: $(Build.SourcesDirectory)/artifacts/staging\n\n artifacts:\n publish:\n logs:\n ${{ if notin(parameters.osGroup, 'browser', 'wasi') }}:\n name: Logs_Build_Attempt$(System.JobAttempt)_${{ parameters.osGroup }}_${{ parameters.osSubGroup }}_${{ parameters.archType }}_${{ parameters.buildConfig }}_${{ parameters.nameSuffix }}\n ${{ if in(parameters.osGroup, 'browser', 'wasi') }}:\n name: Logs_Build_Attempt$(System.JobAttempt)_${{ parameters.osGroup }}_${{ parameters.archType }}_${{ parameters.hostedOs }}_${{ parameters.buildConfig }}_${{ parameters.nameSuffix }}\n\n # Component governance does not work on musl machines\n ${{ if eq(parameters.osSubGroup, '_musl') }}:\n disableComponentGovernance: true\n ${{ else }}:\n disableComponentGovernance: ${{ parameters.disableComponentGovernance }}\n\n workspace:\n clean: all\n\n ${{ if or(ne(parameters.dependsOn,''), ne(parameters.dependsOnGlobalBuilds,'')) }}:\n dependsOn:\n - ${{ each build in parameters.dependsOn }}:\n - ${{ build }}\n - ${{ each globalBuild in parameters.dependsOnGlobalBuilds }}:\n - ${{ format('build_{0}{1}_{2}_{3}_{4}', parameters.osGroup, parameters.osSubgroup, parameters.archType, coalesce(globalBuild.buildConfig, parameters.buildConfig), globalBuild.nameSuffix) }}\n\n variables:\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - group: DotNet-HelixApi-Access\n - group: AzureDevOps-Artifact-Feeds-Pats\n\n - name: _osParameter\n value: -os ${{ parameters.osGroup }}\n - name: _archParameter\n value: -arch ${{ parameters.archType }}\n\n - name: _AssetManifestName\n value: ${{ parameters.osGroup }}${{ parameters.osSubgroup }}_${{ parameters.archType }}_${{ parameters.nameSuffix }}\n\n - name: _SignType\n value: $[ coalesce(variables.OfficialSignType, 'real') ]\n\n - ${{ if and(eq(parameters.osGroup, 'linux'), eq(parameters.osSubGroup, '_bionic')) }}:\n - name: _osParameter\n value: -os linux-bionic\n\n - name: crossArg\n value: ''\n - ${{ if eq(parameters.crossBuild, true) }}:\n - name: crossArg\n value: '-cross'\n\n - name: CxxStandardLibraryArg\n value: ''\n - ${{ if ne(parameters.cxxStandardLibrary, '') }}:\n - name: CxxStandardLibraryArg\n value: /p:TargetCxxStandardLibrary=${{ parameters.cxxStandardLibrary }}\n\n - name: CxxStandardLibraryStaticArg\n value: ''\n - ${{ if ne(parameters.cxxStandardLibraryStatic, '') }}:\n - name: CxxStandardLibraryStaticArg\n value: /p:TargetCxxStandardLibraryStatic=${{ parameters.cxxStandardLibraryStatic }}\n\n - name: CxxAbiLibraryArg\n value: ''\n - ${{ if ne(parameters.cxxAbiLibrary, '') }}:\n - name: CxxAbiLibraryArg\n value: /p:TargetCxxAbiLibrary=${{ parameters.cxxAbiLibrary }}\n\n - name: TargetCxxLibraryConfigurationArgs\n value: $(CxxStandardLibraryArg) $(CxxStandardLibraryStaticArg) $(CxxAbiLibraryArg)\n\n - name: _officialBuildParameter\n ${{ if eq(parameters.isOfficialBuild, true) }}:\n value: /p:OfficialBuildId=$(Build.BuildNumber) /p:DotNetPublishUsingPipelines=true /p:SignType=$(_SignType) /p:DotNetSignType=$(_SignType)\n ${{ if ne(parameters.isOfficialBuild, true) }}:\n value: ''\n\n # Set no native sanitizers by default\n - name: _nativeSanitizersArg\n value: ''\n\n - ${{ each variableTemplate in parameters.extraVariablesTemplates }}:\n - template: ${{ variableTemplate.template }}\n parameters:\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n archType: ${{ parameters.archType }}\n buildConfig: ${{ parameters.buildConfig }}\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n runtimeVariant: ${{ parameters.runtimeVariant }}\n helixQueues: ${{ parameters.helixQueues }}\n targetRid: ${{ parameters.targetRid }}\n nameSuffix: ${{ parameters.nameSuffix }}\n platform: ${{ parameters.platform }}\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n ${{ if ne(variableTemplate.forwardedParameters, '') }}:\n ${{ each parameter in variableTemplate.forwardedParameters }}:\n ${{ parameter }}: ${{ parameters[parameter] }}\n ${{ if ne(variableTemplate.parameters, '') }}:\n ${{ insert }}: ${{ variableTemplate.parameters }}\n\n - ${{ each variable in parameters.variables }}:\n - ${{ variable }}\n\n steps:\n - ${{ if eq(parameters.osGroup, 'windows') }}:\n - template: /eng/pipelines/common/templates/disable-vsupdate-or-failfast.yml\n\n - checkout: self\n clean: true\n fetchDepth: $(checkoutFetchDepth)\n\n - ${{ if and(eq(parameters.isOfficialBuild, true), notin(parameters.osGroup, 'osx', 'maccatalyst', 'ios', 'iossimulator', 'tvos', 'tvossimulator')) }}:\n - template: /eng/pipelines/common/restore-internal-tools.yml\n\n - ${{ if ne(variables['System.TeamProject'], 'public') }}:\n - ${{ if and(ne(parameters.osGroup, 'windows'), ne(parameters.hostedOs, 'windows')) }}:\n - task: Bash@3\n displayName: Setup Private Feeds Credentials\n inputs:\n filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.sh\n arguments: $(Build.SourcesDirectory)/NuGet.config $Token\n env:\n Token: $(dn-bot-dnceng-artifact-feeds-rw)\n - ${{ else }}:\n - task: PowerShell@2\n displayName: Setup Private Feeds Credentials\n inputs:\n filePath: $(Build.SourcesDirectory)/eng/common/SetupNugetSources.ps1\n arguments: -ConfigFile $(Build.SourcesDirectory)/NuGet.config -Password $Env:Token\n env:\n Token: $(dn-bot-dnceng-artifact-feeds-rw)\n # Run the NuGetAuthenticate task after the internal feeds are added to the nuget.config\n # This ensures that creds are set appropriately for all feeds in the config, and that the\n # credential provider is installed.\n - task: NuGetAuthenticate@1\n\n - ${{ if in(parameters.osGroup, 'osx', 'maccatalyst', 'ios', 'iossimulator', 'tvos', 'tvossimulator') }}:\n - script: $(Build.SourcesDirectory)/eng/common/native/install-dependencies.sh ${{ parameters.osGroup }}\n displayName: Install Build Dependencies\n\n - script: |\n du -sh $(Build.SourcesDirectory)/*\n df -h\n displayName: Disk Usage before Build\n\n - ${{ if in(parameters.platform, 'browser_wasm_win', 'wasi_wasm_win') }}:\n # Update machine certs\n - task: PowerShell@2\n displayName: Update machine certs\n inputs:\n filePath: $(Build.SourcesDirectory)/eng/pipelines/mono/update-machine-certs.ps1\n\n - ${{ if ne(parameters.preBuildSteps,'') }}:\n - ${{ each preBuildStep in parameters.preBuildSteps }}:\n - ${{ if ne(preBuildStep.template, '') }}:\n - template: ${{ preBuildStep.template }}\n parameters:\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n archType: ${{ parameters.archType }}\n buildConfig: ${{ parameters.buildConfig }}\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n runtimeVariant: ${{ parameters.runtimeVariant }}\n helixQueues: ${{ parameters.helixQueues }}\n targetRid: ${{ parameters.targetRid }}\n nameSuffix: ${{ parameters.nameSuffix }}\n platform: ${{ parameters.platform }}\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n ${{ if ne(preBuildStep.forwardedParameters, '') }}:\n ${{ each parameter in preBuildStep.forwardedParameters }}:\n ${{ parameter }}: ${{ parameters[parameter] }}\n ${{ if ne(preBuildStep.parameters, '') }}:\n ${{ insert }}: ${{ preBuildStep.parameters }}\n - ${{ else }}:\n - ${{ preBuildStep }}\n\n # Build\n - template: /eng/pipelines/common/templates/global-build-step.yml\n parameters:\n buildArgs: ${{ parameters.buildArgs }}\n useContinueOnErrorDuringBuild: ${{ parameters.useContinueOnErrorDuringBuild }}\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n\n - ${{ if in(parameters.osGroup, 'osx', 'ios', 'tvos', 'android') }}:\n - script: |\n du -sh $(Build.SourcesDirectory)/*\n df -h\n displayName: Disk Usage after Build\n condition: always()\n\n # If intended to send extra steps after regular build add them here.\n - ${{ if ne(parameters.postBuildSteps,'') }}:\n - ${{ each postBuildStep in parameters.postBuildSteps }}:\n - ${{ if ne(postBuildStep.template, '') }}:\n - template: ${{ postBuildStep.template }}\n parameters:\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n archType: ${{ parameters.archType }}\n buildConfig: ${{ parameters.buildConfig }}\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n runtimeVariant: ${{ parameters.runtimeVariant }}\n helixQueues: ${{ parameters.helixQueues }}\n targetRid: ${{ parameters.targetRid }}\n nameSuffix: ${{ parameters.nameSuffix }}\n platform: ${{ parameters.platform }}\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n ${{ if ne(postBuildStep.forwardedParameters, '') }}:\n ${{ each parameter in postBuildStep.forwardedParameters }}:\n ${{ parameter }}: ${{ parameters[parameter] }}\n ${{ if ne(postBuildStep.parameters, '') }}:\n ${{ insert }}: ${{ postBuildStep.parameters }}\n - ${{ else }}:\n - ${{ postBuildStep }}\n\n - ${{ if and(eq(parameters.isOfficialBuild, true), eq(parameters.osGroup, 'windows')) }}:\n - powershell: ./eng/collect_vsinfo.ps1 -ArchiveRunName postbuild_log\n displayName: Collect vslogs on exit\n condition: always()\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\global-build-job.yml | global-build-job.yml | YAML | 13,856 | 0.8 | 0.138983 | 0.053232 | vue-tools | 955 | 2023-08-14T11:54:03.755301 | GPL-3.0 | false | d6b63137e42c532d8ab84620b9259a65 |
parameters:\n teamName: ''\n\nvariables:\n - name: TeamName\n value: ${{ parameters.teamName }}\n - ${{ if or(startswith(variables['Build.SourceBranch'], 'refs/heads/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/internal/release/'), eq(variables['Build.Reason'], 'Manual')) }}:\n - name: PostBuildSign\n value: false\n - ${{ else }}:\n - name: PostBuildSign\n value: true\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\internal-variables.yml | internal-variables.yml | YAML | 406 | 0.7 | 0.083333 | 0 | vue-tools | 563 | 2024-12-02T17:15:03.579432 | MIT | false | 549a99c97b310e1aa8f4ad5b2423c13c |
parameters:\n filesToSign: []\n timeoutInMinutes: '30'\n\nsteps:\n - task: UseDotNet@2\n displayName: Install .NET 6 SDK for signing.\n inputs:\n packageType: 'sdk'\n version: '6.0.x'\n installationPath: '$(Agent.TempDirectory)/dotnet'\n\n - ${{ each file in parameters.filesToSign }}:\n - task: CopyFiles@2\n displayName: 'Copy entitled file ${{ file.name }}'\n inputs:\n contents: '${{ file.path }}/${{ file.name }}'\n targetFolder: '$(Build.ArtifactStagingDirectory)/mac_entitled'\n overWrite: true\n\n - task: ArchiveFiles@2\n displayName: 'Zip MacOS files for signing'\n inputs:\n rootFolderOrFile: '$(Build.ArtifactStagingDirectory)/mac_entitled'\n archiveFile: '$(Build.ArtifactStagingDirectory)/mac_entitled_to_sign.zip'\n archiveType: zip\n includeRootFolder: true\n replaceExistingArchive: true\n\n - task: EsrpCodeSigning@5\n displayName: 'ESRP CodeSigning'\n inputs:\n ConnectedServiceName: 'DotNet-Engineering-Services_KeyVault'\n AppRegistrationClientId: '28ec6507-2167-4eaa-a294-34408cf5dd0e'\n AppRegistrationTenantId: '72f988bf-86f1-41af-91ab-2d7cd011db47'\n AuthAKVName: 'EngKeyVault'\n AuthCertName: 'DotNetCore-ESRP-AuthCert'\n AuthSignCertName: 'DotNetCore-ESRP-AuthSignCert'\n FolderPath: '$(Build.ArtifactStagingDirectory)/'\n Pattern: 'mac_entitled_to_sign.zip'\n UseMinimatch: true\n signConfigType: inlineSignParams\n inlineOperation: |\n [\n {\n "keyCode": "CP-401337-Apple",\n "operationCode": "MacAppDeveloperSign",\n "parameters" : {\n "hardening": "Enable"\n },\n "toolName": "sign",\n "toolVersion": "1.0"\n }\n ]\n SessionTimeout: ${{ parameters.timeoutInMinutes }}\n MaxConcurrency: '50'\n MaxRetryAttempts: '5'\n PendingAnalysisWaitTimeoutMinutes: '5'\n env:\n DOTNET_MULTILEVEL_LOOKUP: 0\n DOTNET_ROOT: '$(Agent.TempDirectory)/dotnet'\n DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR: '$(Agent.TempDirectory)/dotnet'\n\n - task: ExtractFiles@1\n displayName: 'Extract MacOS after signing'\n inputs:\n archiveFilePatterns: '$(Build.ArtifactStagingDirectory)/mac_entitled_to_sign.zip'\n destinationFolder: '$(Build.ArtifactStagingDirectory)/mac_entitled_signed'\n\n - ${{ each file in parameters.filesToSign }}:\n - task: CopyFiles@2\n displayName: 'Copy ${{ file.name }} to destination'\n inputs:\n contents: ${{ file.name }}\n sourceFolder: '$(Build.ArtifactStagingDirectory)/mac_entitled_signed'\n targetFolder: '${{ file.path }}'\n overWrite: true\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\macos-sign-with-entitlements.yml | macos-sign-with-entitlements.yml | YAML | 2,673 | 0.7 | 0.025974 | 0 | react-lib | 831 | 2024-07-27T16:08:55.896693 | Apache-2.0 | false | ce8c0d006727e387474bf92bd87bd548 |
parameters:\n runtimeFlavor: 'coreclr'\n jobTemplate: ''\n buildConfig: ''\n platforms: []\n # platformGroup is a named collection of platforms. Allowed values:\n # 'all' - all platforms\n # 'gcstress' - platforms that support running under GCStress0x3 and GCStress0xC scenarios\n platformGroup: ''\n # helixQueueGroup is a named collection of Helix Queues. If specified, it determines which Helix queues are\n # used, instead of the usual criteria. Values that must be supported by the supplied helixQueuesTemplate:\n # 'pr' - the queues used for a pull request for the platform. Typically a small set.\n # 'ci' - the queues used for a CI (post-merge) test run.\n # Other values might be supported by the template specified in helixQueuesTemplate, but they do not have specified\n # meanings here.\n helixQueueGroup: 'pr'\n # helixQueuesTemplate is a yaml template which will be expanded in order to set up the helix queues\n # for the given platform and helixQueueGroup.\n helixQueuesTemplate: ''\n container: ''\n shouldContinueOnError: false\n jobParameters: {}\n variables: []\n\njobs:\n\n# Linux arm\n\n- ${{ if or(containsValue(parameters.platforms, 'linux_arm'), in(parameters.platformGroup, 'all', 'gcstress')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: arm\n targetRid: linux-arm\n platform: linux_arm\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_arm\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux armv6\n\n- ${{ if containsValue(parameters.platforms, 'linux_armv6') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: armv6\n targetRid: linux-armv6\n platform: linux_armv6\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_armv6\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux arm64\n\n- ${{ if or(containsValue(parameters.platforms, 'linux_arm64'), in(parameters.platformGroup, 'all', 'gcstress')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: arm64\n targetRid: linux-arm64\n platform: linux_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n ${{ if eq(parameters.container, '') }}:\n container: linux_arm64\n ${{ if ne(parameters.container, '') }}:\n container:\n image: ${{ parameters.container }}\n registry: mcr\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux musl x64\n\n- ${{ if or(containsValue(parameters.platforms, 'linux_musl_x64'), eq(parameters.platformGroup, 'all')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n osSubgroup: _musl\n archType: x64\n targetRid: linux-musl-x64\n platform: linux_musl_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_musl_x64\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux musl arm\n\n- ${{ if or(containsValue(parameters.platforms, 'linux_musl_arm'), eq(parameters.platformGroup, 'all')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n osSubgroup: _musl\n archType: arm\n targetRid: linux-musl-arm\n platform: linux_musl_arm\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_musl_arm\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux musl arm64\n\n- ${{ if or(containsValue(parameters.platforms, 'linux_musl_arm64'), eq(parameters.platformGroup, 'all')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n osSubgroup: _musl\n archType: arm64\n targetRid: linux-musl-arm64\n platform: linux_musl_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_musl_arm64\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux Bionic arm\n\n- ${{ if containsValue(parameters.platforms, 'linux_bionic_arm') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n osSubgroup: _bionic\n archType: arm\n targetRid: linux-bionic-arm\n platform: linux_bionic_arm\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_bionic\n jobParameters:\n runtimeFlavor: mono\n # We build on Linux, but the test queue runs Windows, so\n # we need to override the test script generation\n runScriptWindowsCmd: true\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux Bionic arm64\n\n- ${{ if containsValue(parameters.platforms, 'linux_bionic_arm64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n osSubgroup: _bionic\n archType: arm64\n targetRid: linux-bionic-arm64\n platform: linux_bionic_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_bionic\n jobParameters:\n runtimeFlavor: mono\n # We build on Linux, but the test queue runs Windows, so\n # we need to override the test script generation\n runScriptWindowsCmd: true\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux Bionic x64\n\n- ${{ if containsValue(parameters.platforms, 'linux_bionic_x64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n osSubgroup: _bionic\n archType: x64\n targetRid: linux-bionic-x64\n platform: linux_bionic_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_bionic\n jobParameters:\n runtimeFlavor: mono\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux x64\n\n- ${{ if or(containsValue(parameters.platforms, 'linux_x64'), containsValue(parameters.platforms, 'CoreClrTestBuildHost'), in(parameters.platformGroup, 'all', 'gcstress')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: x64\n targetRid: linux-x64\n platform: linux_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n ${{ if eq(parameters.container, '') }}:\n container: linux_x64\n ${{ if ne(parameters.container, '') }}:\n container:\n image: ${{ parameters.container }}\n registry: mcr\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n- ${{ if containsValue(parameters.platforms, 'linux_x64_sanitizer') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: x64\n targetRid: linux-x64\n platform: linux_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_x64_sanitizer\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n cxxStandardLibrary: libc++\n cxxStandardLibraryStatic: true\n cxxAbiLibrary: libstdc++\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux x86\n\n- ${{ if containsValue(parameters.platforms, 'linux_x86') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: x86\n targetRid: linux-x86\n platform: linux_x86\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_x86\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Runtime-dev-innerloop build\n\n- ${{ if containsValue(parameters.platforms, 'linux_x64_dev_innerloop') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: x64\n targetRid: linux-x64\n platform: linux_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_x64_dev_innerloop\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n- ${{ if containsValue(parameters.platforms, 'linux_musl_x64_dev_innerloop') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n osSubgroup: _musl\n archType: x64\n targetRid: linux-musl-x64\n platform: linux_musl_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_musl_x64_dev_innerloop\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# GCC Linux x64 Build\n\n- ${{ if containsValue(parameters.platforms, 'gcc_linux_x64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: x64\n targetRid: linux-x64\n platform: linux_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: debian-12-gcc14-amd64\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Mono LLVMAot test build\n\n- ${{ if containsValue(parameters.platforms, 'linux_x64_llvmaot') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: x64\n targetRid: linux-x64\n platform: linux_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_x64_llvmaot\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux s390x\n\n- ${{ if containsValue(parameters.platforms, 'linux_s390x') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: s390x\n targetRid: linux-s390x\n platform: linux_s390x\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_s390x\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux PPC64le\n\n- ${{ if containsValue(parameters.platforms, 'linux_ppc64le') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: ppc64le\n targetRid: linux-ppc64le\n platform: linux_ppc64le\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_ppc64le\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux RISCV64\n\n- ${{ if containsValue(parameters.platforms, 'linux_riscv64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: riscv64\n targetRid: linux-riscv64\n platform: linux_riscv64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_riscv64\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Linux LoongArch64\n\n- ${{ if containsValue(parameters.platforms, 'linux_loongarch64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux\n archType: loongarch64\n targetRid: linux-loongarch64\n platform: linux_loongarch64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: linux_loongarch64\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# WASI WebAssembly\n\n- ${{ if containsValue(parameters.platforms, 'wasi_wasm') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: wasi\n archType: wasm\n targetRid: wasi-wasm\n platform: wasi_wasm\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: wasi_wasm\n jobParameters:\n hostedOs: linux\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n stagedBuild: ${{ parameters.stagedBuild }}\n buildConfig: ${{ parameters.buildConfig }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# WASI WebAssembly windows\n\n- ${{ if containsValue(parameters.platforms, 'wasi_wasm_win') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: wasi\n archType: wasm\n targetRid: wasi-wasm\n platform: wasi_wasm_win\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n hostedOs: windows\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n stagedBuild: ${{ parameters.stagedBuild }}\n buildConfig: ${{ parameters.buildConfig }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Browser WebAssembly\n\n- ${{ if containsValue(parameters.platforms, 'browser_wasm') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: browser\n archType: wasm\n targetRid: browser-wasm\n platform: browser_wasm\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: browser_wasm\n jobParameters:\n hostedOs: linux\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Browser WebAssembly Linux Firefox\n\n- ${{ if containsValue(parameters.platforms, 'browser_wasm_firefox') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: browser\n archType: wasm\n targetRid: browser-wasm\n platform: browser_wasm_firefox\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: browser_wasm\n jobParameters:\n hostedOs: linux\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Browser WebAssembly on Windows\n\n- ${{ if containsValue(parameters.platforms, 'browser_wasm_win') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: browser\n archType: wasm\n targetRid: browser-wasm\n platform: browser_wasm_win\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n hostedOs: windows\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# FreeBSD\n- ${{ if containsValue(parameters.platforms, 'freebsd_x64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: freebsd\n archType: x64\n targetRid: freebsd-x64\n platform: freebsd_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: freebsd_x64\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Android x64\n\n- ${{ if containsValue(parameters.platforms, 'android_x64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: android\n archType: x64\n targetRid: android-x64\n platform: android_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: android\n jobParameters:\n runtimeFlavor: mono\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Android x64 with Docker-in-Docker\n\n- ${{ if containsValue(parameters.platforms, 'android_x64_docker') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: android\n archType: x64\n targetRid: android-x64\n platform: android_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: android_docker\n jobParameters:\n runtimeFlavor: mono\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Android x86\n\n- ${{ if containsValue(parameters.platforms, 'android_x86') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: android\n archType: x86\n targetRid: android-x86\n platform: android_x86\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: android\n jobParameters:\n runtimeFlavor: mono\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Android arm\n\n- ${{ if containsValue(parameters.platforms, 'android_arm') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: android\n archType: arm\n targetRid: android-arm\n platform: android_arm\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: android\n jobParameters:\n runtimeFlavor: mono\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Android arm64\n\n- ${{ if containsValue(parameters.platforms, 'android_arm64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: android\n archType: arm64\n targetRid: android-arm64\n platform: android_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: android\n jobParameters:\n runtimeFlavor: mono\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Mac Catalyst x64\n\n- ${{ if containsValue(parameters.platforms, 'maccatalyst_x64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: maccatalyst\n archType: x64\n targetRid: maccatalyst-x64\n platform: maccatalyst_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n ${{ if eq(parameters.runtimeFlavor, '') }}:\n runtimeFlavor: mono\n ${{ else }}:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Mac Catalyst arm64\n\n- ${{ if containsValue(parameters.platforms, 'maccatalyst_arm64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: maccatalyst\n archType: arm64\n targetRid: maccatalyst-arm64\n platform: maccatalyst_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n ${{ if eq(parameters.runtimeFlavor, '') }}:\n runtimeFlavor: mono\n ${{ else }}:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# tvOS arm64\n\n- ${{ if containsValue(parameters.platforms, 'tvos_arm64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: tvos\n archType: arm64\n targetRid: tvos-arm64\n platform: tvos_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n ${{ if eq(parameters.runtimeFlavor, '') }}:\n runtimeFlavor: mono\n ${{ else }}:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# tvOS Simulator x64\n\n- ${{ if containsValue(parameters.platforms, 'tvossimulator_x64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: tvossimulator\n archType: x64\n targetRid: tvossimulator-x64\n platform: tvossimulator_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n ${{ if eq(parameters.runtimeFlavor, '') }}:\n runtimeFlavor: mono\n ${{ else }}:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# tvOS Simulator arm64\n\n- ${{ if containsValue(parameters.platforms, 'tvossimulator_arm64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: tvossimulator\n archType: arm64\n targetRid: tvossimulator-arm64\n platform: tvossimulator_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n ${{ if eq(parameters.runtimeFlavor, '') }}:\n runtimeFlavor: mono\n ${{ else }}:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# iOS arm64\n\n- ${{ if containsValue(parameters.platforms, 'ios_arm64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: ios\n archType: arm64\n targetRid: ios-arm64\n platform: ios_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n ${{ if eq(parameters.runtimeFlavor, '') }}:\n runtimeFlavor: mono\n ${{ else }}:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# iOS Simulator x64\n\n- ${{ if containsValue(parameters.platforms, 'iossimulator_x64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: iossimulator\n archType: x64\n targetRid: iossimulator-x64\n platform: iossimulator_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n ${{ if eq(parameters.runtimeFlavor, '') }}:\n runtimeFlavor: mono\n ${{ else }}:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# iOS Simulator arm64\n\n- ${{ if containsValue(parameters.platforms, 'iossimulator_arm64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: iossimulator\n archType: arm64\n targetRid: iossimulator-arm64\n platform: iossimulator_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n ${{ if eq(parameters.runtimeFlavor, '') }}:\n runtimeFlavor: mono\n ${{ else }}:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# macOS arm64\n\n- ${{ if containsValue(parameters.platforms, 'osx_arm64') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: osx\n archType: arm64\n targetRid: osx-arm64\n platform: osx_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# macOS x64\n\n- ${{ if or(containsValue(parameters.platforms, 'osx_x64'), eq(parameters.platformGroup, 'all')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: osx\n archType: x64\n targetRid: osx-x64\n platform: osx_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Tizen armel\n\n- ${{ if containsValue(parameters.platforms, 'tizen_armel') }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: linux # Our build scripts don't support Tizen and have always used Linux as the OS parameter.\n archType: armel\n targetRid: tizen-armel\n platform: tizen_armel\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n container: tizen_armel\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n crossBuild: true\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Windows x64\n\n- ${{ if or(containsValue(parameters.platforms, 'windows_x64'), in(parameters.platformGroup, 'all', 'gcstress')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: windows\n archType: x64\n targetRid: win-x64\n platform: windows_x64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Windows x86\n\n- ${{ if or(containsValue(parameters.platforms, 'windows_x86'), in(parameters.platformGroup, 'all', 'gcstress')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: windows\n archType: x86\n targetRid: win-x86\n platform: windows_x86\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n\n# Windows arm64\n\n- ${{ if or(containsValue(parameters.platforms, 'windows_arm64'), in(parameters.platformGroup, 'all', 'gcstress')) }}:\n - template: xplat-setup.yml\n parameters:\n jobTemplate: ${{ parameters.jobTemplate }}\n helixQueuesTemplate: ${{ parameters.helixQueuesTemplate }}\n variables: ${{ parameters.variables }}\n osGroup: windows\n archType: arm64\n targetRid: win-arm64\n platform: windows_arm64\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n jobParameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueueGroup: ${{ parameters.helixQueueGroup }}\n ${{ insert }}: ${{ parameters.jobParameters }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\platform-matrix.yml | platform-matrix.yml | YAML | 36,262 | 0.8 | 0.062693 | 0.065537 | python-kit | 898 | 2024-03-11T01:21:36.383305 | BSD-3-Clause | false | 02c923baa368255d86721e3d1221b4c6 |
steps:\n - task: NuGetAuthenticate@1\n inputs:\n nuGetServiceConnections: 'devdiv/dotnet-core-internal-tooling'\n forceReinstallCredentialProvider: true\n\n - script: $(Build.SourcesDirectory)$(dir)build$(scriptExt)\n -ci\n -restore\n -configuration $(_BuildConfig)\n -projects $(Build.SourcesDirectory)/eng/common/internal/Tools.csproj\n /bl:$(Build.SourcesDirectory)/artifacts/log/$(_BuildConfig)/RestoreInternal.binlog\n /v:normal\n displayName: Restore internal tools\n condition: and(succeeded(), ne(variables['_skipRestoreInternalTools'], 'true'))\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\restore-internal-tools.yml | restore-internal-tools.yml | YAML | 627 | 0.7 | 0 | 0 | python-kit | 946 | 2025-06-28T18:12:42.626996 | GPL-3.0 | false | 15e323c5130a8ba8dee693b8d183f881 |
parameters:\n rootFolder: ''\n includeRootFolder: false\n archiveType: ''\n tarCompression: ''\n archiveExtension: ''\n artifactName: ''\n displayName: ''\n condition: succeeded()\n isOfficialBuild: false\n\nsteps:\n # Zip Artifact\n - task: ArchiveFiles@2\n displayName: 'Zip ${{ parameters.displayName }}'\n inputs:\n rootFolderOrFile: ${{ parameters.rootFolder }}\n archiveFile: $(Build.StagingDirectory)/${{ parameters.artifactName }}${{ parameters.archiveExtension }}\n archiveType: ${{ parameters.archiveType }}\n tarCompression: ${{ parameters.tarCompression }}\n includeRootFolder: ${{ parameters.includeRootFolder }}\n condition: ${{ parameters.condition }}\n\n - template: /eng/pipelines/common/templates/publish-build-artifacts.yml\n parameters:\n isOfficialBuild: ${{ parameters.isOfficialBuild }}\n displayName: 'Publish ${{ parameters.displayName }}'\n inputs:\n PathtoPublish: $(Build.StagingDirectory)/${{ parameters.artifactName }}${{ parameters.archiveExtension }}\n artifactName: ${{ parameters.artifactName }}\n condition: ${{ parameters.condition }} | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\upload-artifact-step.yml | upload-artifact-step.yml | YAML | 1,140 | 0.8 | 0 | 0.034483 | python-kit | 233 | 2024-09-23T06:12:10.297107 | GPL-3.0 | false | 6859aad953c4eab82927901ed06b0a13 |
parameters:\n name: ''\n isOfficialBuild: true\n\nsteps:\n- task: CopyFiles@2\n displayName: Prepare job-specific intermediate artifacts subdirectory\n inputs:\n SourceFolder: '$(Build.SourcesDirectory)/artifacts/packages/$(_BuildConfig)'\n Contents: |\n Shipping/**/*\n NonShipping/**/*\n TargetFolder: '$(Build.StagingDirectory)/IntermediateArtifacts/${{ parameters.name }}'\n CleanTargetFolder: true\n\n- template: /eng/pipelines/common/templates/publish-build-artifacts.yml\n parameters:\n isOfficialBuild: ${{ parameters.isOfficialBuild }}\n displayName: Publish intermediate artifacts\n inputs:\n PathtoPublish: '$(Build.StagingDirectory)/IntermediateArtifacts'\n ArtifactName: IntermediateArtifacts\n ArtifactType: container\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\upload-intermediate-artifacts-step.yml | upload-intermediate-artifacts-step.yml | YAML | 761 | 0.8 | 0 | 0 | react-lib | 795 | 2025-05-09T11:31:37.753372 | Apache-2.0 | false | 22d7a81adbf6c4c0675ba61fc6bdff36 |
parameters:\n - name: templatePath\n type: string\n default: 'templates'\n\nvariables:\n\n# These values enable longer delays, configurable number of retries, and special understanding of TCP hang-up\n# See https://github.com/NuGet/Home/issues/11027 for details\n- name: NUGET_ENABLE_EXPERIMENTAL_HTTP_RETRY\n value: true\n- name: NUGET_EXPERIMENTAL_MAX_NETWORK_TRY_COUNT\n value: 6\n- name: NUGET_EXPERIMENTAL_NETWORK_RETRY_DELAY_MILLISECONDS\n value: 1000\n\n# disable CodeQL if we're not in the dedicated pipeline for it\n- name: Codeql.Enabled\n value: ${{ eq(variables['Build.DefinitionName'], 'dotnet-runtime-codeql') }}\n\n- name: isOfficialBuild\n value: ${{ and(eq(variables['System.TeamProject'], 'internal'), eq(variables['Build.DefinitionName'], 'dotnet-runtime-official')) }}\n- name: isRollingBuild\n value: ${{ ne(variables['Build.Reason'], 'PullRequest') }}\n- name: isExtraPlatformsBuild\n value: ${{ eq(variables['Build.DefinitionName'], 'runtime-extra-platforms') }}\n- name: isNotExtraPlatformsBuild\n value: ${{ ne(variables['Build.DefinitionName'], 'runtime-extra-platforms') }}\n- name: isWasmOnlyBuild\n value: ${{ in(variables['Build.DefinitionName'], 'runtime-wasm', 'runtime-wasm-libtests', 'runtime-wasm-non-libtests', 'runtime-wasm-dbgtests', 'runtime-wasm-optional') }}\n- name: isiOSLikeOnlyBuild\n value: ${{ in(variables['Build.DefinitionName'], 'runtime-ioslike') }}\n- name: isiOSLikeSimulatorOnlyBuild\n value: ${{ in(variables['Build.DefinitionName'], 'runtime-ioslikesimulator') }}\n- name: isAndroidOnlyBuild\n value: ${{ in(variables['Build.DefinitionName'], 'runtime-android') }}\n- name: isAndroidEmulatorOnlyBuild\n value: ${{ in(variables['Build.DefinitionName'], 'runtime-androidemulator') }}\n- name: isMacCatalystOnlyBuild\n value: ${{ in(variables['Build.DefinitionName'], 'runtime-maccatalyst') }}\n- name: isLinuxBionicOnlyBuild\n value: ${{ in(variables['Build.DefinitionName'], 'runtime-linuxbionic') }}\n- name: isRunSmokeTestsOnly\n value: ${{ notin(variables['Build.DefinitionName'], 'runtime-extra-platforms', 'runtime-wasm', 'runtime-wasm-libtests', 'runtime-wasm-non-libtests', 'runtime-ioslike', 'runtime-ioslikesimulator', 'runtime-android', 'runtime-androidemulator', 'runtime-maccatalyst', 'runtime-linuxbionic') }}\n- name: isNotSpecificPlatformOnlyBuild\n value: ${{ notin(variables['Build.DefinitionName'], 'runtime-wasm', 'runtime-wasm-libtests', 'runtime-wasm-non-libtests', 'runtime-ioslike', 'runtime-ioslikesimulator', 'runtime-android', 'runtime-androidemulator', 'runtime-maccatalyst', 'runtime-linuxbionic') }}\n\n- name: debugOnPrReleaseOnRolling\n ${{ if ne(variables['Build.Reason'], 'PullRequest') }}:\n value: Release\n ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n value: Debug\n\n- name: isDefaultPipeline\n value: $[ and(\n ne(variables['isWasmOnlyBuild'], true),\n or(\n ne(variables['isExtraPlatformsBuild'], true),\n eq(variables['isRollingBuild'], true))) ]\n\n- template: /eng/common/${{ parameters.templatePath }}/variables/pool-providers.yml\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\variables.yml | variables.yml | YAML | 3,071 | 0.8 | 0.081967 | 0.055556 | python-kit | 272 | 2024-10-08T06:43:53.506041 | MIT | false | c1ec7a7594fcf821a1966d45927187a3 |
parameters:\n nameSuffix: ''\n buildConfig: ''\n hostedOs: ''\n osGroup: ''\n publishArtifactsForWorkload: always()\n publishWBT: always()\n\nsteps:\n\n - task: CopyFiles@2\n displayName: Copy artifacts needed for running WBT\n condition: and(succeeded(), ${{ parameters.publishArtifactsForWorkload }})\n inputs:\n SourceFolder: '$(Build.SourcesDirectory)/artifacts'\n Contents: |\n packages/$(_BuildConfig)/Shipping/**\n packages/$(_BuildConfig)/NonShipping/**\n bin/WasmAppBuilder/**/*\n bin/WasmBuildTasks/**\n bin/WorkloadBuildTasks/**\n bin/installer.tasks/**\n bin/Crossgen2Tasks/**\n TargetFolder: '$(Build.StagingDirectory)/IntermediateArtifacts'\n CleanTargetFolder: true\n\n - task: PublishBuildArtifacts@1\n displayName: Publish intermediate artifacts\n condition: and(succeeded(), ${{ parameters.publishArtifactsForWorkload }})\n inputs:\n pathToPublish: '$(Build.StagingDirectory)/IntermediateArtifacts'\n artifactName: BuildArtifacts_${{ parameters.osGroup }}_wasm_$(_hostedOs)_${{ parameters.buildConfig }}_${{ parameters.nameSuffix }}\n artifactType: container\n\n - task: CopyFiles@2\n displayName: Copy WBT\n condition: and(succeeded(), ${{ parameters.publishWBT }})\n inputs:\n SourceFolder: '$(Build.SourcesDirectory)/artifacts'\n Contents: helix/buildwasmapps/**\n TargetFolder: '$(Build.StagingDirectory)/IntermediateArtifacts'\n CleanTargetFolder: true\n\n - task: PublishBuildArtifacts@1\n displayName: Publish Wasm.Build.Tests archive\n condition: and(succeeded(), ${{ parameters.publishWBT }})\n inputs:\n pathToPublish: '$(Build.StagingDirectory)/IntermediateArtifacts'\n artifactName: WasmBuildTests_$(_hostedOs)_${{ parameters.nameSuffix }}\n artifactType: container\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\wasm-post-build-steps.yml | wasm-post-build-steps.yml | YAML | 1,812 | 0.8 | 0.02 | 0 | awesome-app | 145 | 2023-11-23T21:01:10.837575 | MIT | false | f226178557d4ad9af5078c829cf20904 |
parameters:\n jobTemplate: ''\n hostedOs: ''\n hostedArch: ''\n osGroup: ''\n osSubgroup: ''\n archType: ''\n container: ''\n helixQueuesTemplate: ''\n platform: ''\n targetRid: ''\n jobParameters: {}\n shouldContinueOnError: false # set `shouldContinueOnError: forceFalse` to not use the defaults, and set specifically to `false`\n variables: []\n\njobs:\n- template: ${{ coalesce(parameters.helixQueuesTemplate, parameters.jobTemplate) }}\n parameters:\n shouldContinueOnError: ${{ or(eq(parameters.shouldContinueOnError, true), and(ne(parameters.shouldContinueOnError, 'forceFalse'), endsWith(variables['Build.DefinitionName'], 'staging'), eq(variables['Build.Reason'], 'PullRequest'))) }}\n\n variables:\n - template: /eng/common/${{ coalesce(parameters.jobParameters.templatePath, 'templates') }}/variables/pool-providers.yml\n # Disable component governance in our CI builds. These builds are not shipping nor\n # are they a service. Also the component governance jobs issue lots of inconsequential\n # warnings and errors into our build timelines that make it hard to track down\n # real errors in the build\n - name: skipComponentGovernanceDetection\n value: true\n - name: runCodesignValidationInjection\n value: false\n\n - name: checkoutFetchDepth\n value: 20\n\n - name: buildConfigUpper\n ${{ if eq(parameters.jobParameters.buildConfig, 'debug') }}:\n value: 'Debug'\n ${{ if eq(parameters.jobParameters.buildConfig, 'release') }}:\n value: 'Release'\n ${{ if eq(parameters.jobParameters.buildConfig, 'checked') }}:\n value: 'Checked'\n\n - name: _BuildConfig\n value: $(buildConfigUpper)\n\n - name: archType\n value: ${{ parameters.archType }}\n\n - name: osGroup\n value: ${{ parameters.osGroup }}\n\n - name: osSubgroup\n value: ${{ parameters.osSubgroup }}\n\n - name: _runSmokeTestsOnlyArg\n value: '/p:RunSmokeTestsOnly=$(isRunSmokeTestsOnly)'\n\n - name: _overrideTestScriptWindowsCmdParameter\n ${{ if eq(parameters.jobParameters.runScriptWindowsCmd, true) }}:\n value: '/p:RunScriptWindowsCmd=true'\n ${{ if ne(parameters.jobParameters.runScriptWindowsCmd, true) }}:\n value: ''\n\n - name: _hostedOs\n value: ${{ parameters.jobParameters.hostedOs }}\n\n - ${{ if or(eq(parameters.osGroup, 'windows'), eq(parameters.jobParameters.hostedOs, 'windows')) }}:\n - name: archiveExtension\n value: '.zip'\n - name: archiveType\n value: zip\n - name: tarCompression\n value: ''\n - name: exeExt\n value: '.exe'\n - name: scriptExt\n value: '.cmd'\n - name: dir\n value: '\'\n - name: _msbuildCommand\n value: powershell -ExecutionPolicy ByPass -NoProfile eng\common\msbuild.ps1 -ci\n - name: _warnAsErrorParamHelixOverride\n value: -warnaserror 0\n - name: setScriptToEchoAndFailOnNonZero\n value: ''\n - name: logRootNameArg\n value: 'log '\n\n - ${{ if and(ne(parameters.osGroup, 'windows'), ne(parameters.jobParameters.hostedOs, 'windows')) }}:\n - name: archiveExtension\n value: '.tar.gz'\n - name: archiveType\n value: tar\n - name: tarCompression\n value: gz\n - name: exeExt\n value: ''\n - name: scriptExt\n value: '.sh'\n - name: dir\n value: '/'\n - name: _msbuildCommand\n value: ./eng/common/msbuild.sh --ci\n - name: _warnAsErrorParamHelixOverride\n value: --warnaserror false\n # Set the bash script to display each command, and stop if any command exits nonzero.\n - name: setScriptToEchoAndFailOnNonZero\n value: 'set -xe'\n - name: logRootNameArg\n value: '-log:'\n\n - name: runtimeFlavorName\n ${{ if eq(parameters.jobParameters.runtimeFlavor, 'mono') }}:\n value: Mono\n ${{ if eq(parameters.jobParameters.runtimeFlavor, 'coreclr') }}:\n value: CoreCLR\n\n - ${{ if eq(parameters.archType, 'wasm') }}:\n - name: wasmDarcDependenciesChanged\n value: $[ or(\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_NET_Workload_Emscripten_Current_Manifest-10_0_100_Transport'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_DotNet_Build_Tasks_Workloads'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.System_Runtime_TimeZoneData'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_Net_Compilers_Toolset'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_CodeAnalysis'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_CodeAnalysis_CSharp'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_CodeAnalysis_Analyzers'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_CodeAnalysis_NetAnalyzers'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['DarcDependenciesChanged.Microsoft_NET_ILLink_Tasks'], true)) ]\n\n - name: shouldRunWasmBuildTestsOnDefaultPipeline\n value: $[\n or(\n eq(variables['wasmDarcDependenciesChanged'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_tools_illink.containsChange'], true),\n eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_wasmbuildtests.containsChange'], true))\n ]\n\n # needed for Wasm.Build.Tests\n - name: wasmSingleThreadedBuildOnlyNeededOnDefaultPipeline\n value: $[ variables['shouldRunWasmBuildTestsOnDefaultPipeline'] ]\n - name: wasmMultiThreadedBuildOnlyNeededOnDefaultPipeline\n value: $[ variables['shouldRunWasmBuildTestsOnDefaultPipeline'] ]\n\n - ${{ each variable in parameters.variables }}:\n - ${{ variable }}\n\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n archType: ${{ parameters.archType }}\n targetRid: ${{ parameters.targetRid }}\n platform: ${{ parameters.platform }}\n\n ${{ if ne(parameters.container, '') }}:\n ${{ if eq(parameters.container.registry, 'mcr') }}:\n container: ${{ format('{0}:{1}', 'mcr.microsoft.com/dotnet-buildtools/prereqs', parameters.container.image) }}\n ${{ if and(ne(parameters.container.image, ''), ne(parameters.container.registry, 'mcr')) }}:\n container: ${{ format('{0}:{1}', parameters.container.registry, parameters.container.image) }}\n ${{ if eq(parameters.container.image, '') }}:\n container: ${{ parameters.container }}\n\n ${{ if eq(parameters.jobParameters.pool, '') }}:\n pool:\n # Public Linux Build Pool\n ${{ if and(or(in(parameters.osGroup, 'linux', 'freebsd', 'android', 'tizen'), eq(parameters.jobParameters.hostedOs, 'linux')), eq(variables['System.TeamProject'], 'public')) }}:\n name: $(DncEngPublicBuildPool)\n demands: ImageOverride -equals Build.Ubuntu.2204.Amd64.Open\n\n # Official Build Linux Pool\n ${{ if and(or(in(parameters.osGroup, 'linux', 'freebsd', 'android', 'tizen'), eq(parameters.jobParameters.hostedOs, 'linux')), ne(variables['System.TeamProject'], 'public')) }}:\n name: $(DncEngInternalBuildPool)\n demands: ImageOverride -equals 1es-ubuntu-2204\n os: linux\n\n # OSX Public Build Pool (we don't have on-prem OSX BuildPool).\n ${{ if and(in(parameters.osGroup, 'osx', 'maccatalyst', 'ios', 'iossimulator', 'tvos', 'tvossimulator'), eq(variables['System.TeamProject'], 'public')) }}:\n vmImage: 'macos-13'\n\n # Official build OSX pool\n ${{ if and(in(parameters.osGroup, 'osx', 'maccatalyst', 'ios', 'iossimulator', 'tvos', 'tvossimulator'), ne(variables['System.TeamProject'], 'public')) }}:\n name: "Azure Pipelines"\n vmImage: 'macos-latest-internal'\n os: macOS\n\n # Official Build Windows Pool\n ${{ if and(or(eq(parameters.osGroup, 'windows'), eq(parameters.jobParameters.hostedOs, 'windows')), ne(variables['System.TeamProject'], 'public')) }}:\n name: $(DncEngInternalBuildPool)\n demands: ImageOverride -equals windows.vs2022.amd64\n\n # Public Windows Build Pool\n ${{ if and(or(eq(parameters.osGroup, 'windows'), eq(parameters.jobParameters.hostedOs, 'windows')), eq(variables['System.TeamProject'], 'public')) }}:\n name: $(DncEngPublicBuildPool)\n demands: ImageOverride -equals windows.vs2022.amd64.open\n\n ${{ if eq(parameters.helixQueuesTemplate, '') }}:\n # macOS hosted pool machines are slower so we need to give a greater timeout than the 60 mins default.\n ${{ if and(eq(parameters.jobParameters.timeoutInMinutes, ''), in(parameters.osGroup, 'osx', 'maccatalyst', 'ios', 'tvos')) }}:\n timeoutInMinutes: 120\n ${{ insert }}: ${{ parameters.jobParameters }}\n ${{ if ne(parameters.helixQueuesTemplate, '') }}:\n jobTemplate: ${{ parameters.jobTemplate }}\n jobParameters: ${{ parameters.jobParameters }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\xplat-setup.yml | xplat-setup.yml | YAML | 9,573 | 0.8 | 0.128713 | 0.074286 | react-lib | 4 | 2025-05-01T10:36:29.988092 | Apache-2.0 | false | 3538863412dafb9f09dfe6a47856d62f |
parameters:\n archType: ''\n buildConfig: ''\n condition: always()\n creator: ''\n extraHelixArguments: ''\n helixQueues: ''\n interpreter: ''\n osGroup: ''\n additionalSteps: []\n runTests: true\n runtimeFlavor: ''\n shouldContinueOnError: false\n targetRid: ''\n testRunNamePrefixSuffix: ''\n testScope: 'innerloop' # innerloop | outerloop | all\n scenarios: ['normal']\n\nsteps:\n - ${{ if ne(parameters.additionalSteps, '') }}:\n - ${{ each additionalStep in parameters.additionalSteps }}:\n - ${{ additionalStep }}\n\n - ${{ if eq(parameters.runTests, true) }}:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n runtimeFlavor: ${{ parameters.runtimeFlavor }}\n archType: ${{ parameters.archType }}\n buildConfig: ${{ parameters.buildConfig }}\n helixQueues: ${{ parameters.helixQueues }}\n osGroup: ${{ parameters.osGroup }}\n targetRid: ${{ parameters.targetRid }}\n testRunNamePrefixSuffix: ${{ parameters.testRunNamePrefixSuffix }}\n testScope: ${{ parameters.testScope }}\n interpreter: ${{ parameters.interpreter }}\n condition: ${{ parameters.condition }}\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n extraHelixArguments: ${{ parameters.extraHelixArguments }} /p:BrowserHost=$(_hostedOs)\n creator: dotnet-bot\n scenarios: ${{ parameters.scenarios }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\additional-steps-then-helix.yml | additional-steps-then-helix.yml | YAML | 1,392 | 0.8 | 0.05 | 0 | node-utils | 779 | 2024-09-03T01:03:57.152841 | MIT | false | 72593b1c52adf6dcb2863d61297b966a |
# This script tries to disable VSIXAutoUpdate. In case an update is seen as already running,\n# it will exit with an error.\nsteps:\n - powershell: |\n schtasks /change /tn "\Microsoft\VisualStudio\VSIX Auto Update" /disable\n\n $vswhere = "C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere.exe"\n if (-not (Test-Path -Path "$vswhere" -PathType Leaf))\n {\n Write-Error "Couldn't locate vswhere at $vswhere"\n exit 1\n }\n\n $vsdir = &"$vswhere" -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -property installationPath\n $vsregedit = "$vsdir\Common7\IDE\VsRegEdit.exe"\n\n if (-not (Test-Path -Path "$vsregedit" ))\n {\n Write-Error "VSWhere returned path: $vsdir, but regedit $vsregedit doesn't exist."\n exit 1\n }\n\n Write-Output "VSWhere returned path: $vsdir, using regedit $vsregedit"\n Write-Output "Disabling updates through VS Registry:"\n\n &"$vsdir\Common7\IDE\VsRegEdit.exe" set local HKCU ExtensionManager AutomaticallyCheckForUpdates2Override dword 0\n &"$vsdir\Common7\IDE\VsRegEdit.exe" read local HKCU ExtensionManager AutomaticallyCheckForUpdates2Override dword\n\n $processes = Get-Process -Name VSIXAutoUpdate -ErrorAction SilentlyContinue | %{ $_.Id }\n\n if ($processes -ne $null -and $processes.Count -gt 0)\n {\n Write-Output "VSIXAutoUpdate has already spawned. Waiting for process(es) $processes for up to 5 min."\n if (-not (Wait-Process -Id $processes -Timeout 300))\n {\n Write-Error "VSIXAutoUpdate has already spawned. Failfast to allow retry"\n exit 1\n }\n }\n\n $status = &"$vswhere" -latest -prerelease -products * -requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64 -format json | ConvertFrom-Json\n if ($status.isLaunchable -and -not $status.isRebootRequired)\n {\n Write-Output "VS in usable state"\n }\n else\n {\n Write-Error "VS in not in a usable state. Updates or image generation left the machine in a poor state."\n exit 1\n }\n\n displayName: Disable VSIX updates or fail-fast\n condition: always()\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\disable-vsupdate-or-failfast.yml | disable-vsupdate-or-failfast.yml | YAML | 2,198 | 0.95 | 0.132075 | 0.045455 | awesome-app | 735 | 2025-05-12T05:49:21.526158 | GPL-3.0 | false | a7bb8c527a745054fed56a4f6108b028 |
parameters:\n buildArgs: ''\n useContinueOnErrorDuringBuild: false\n shouldContinueOnError: false\n archParameter: $(_archParameter)\n crossArg: $(crossArg)\n targetCxxLibraryConfigurationArgs: $(TargetCxxLibraryConfigurationArgs)\n displayName: Build product\n container: ''\n condition: succeeded()\n\nsteps:\n - script: $(Build.SourcesDirectory)$(dir)build$(scriptExt) -ci ${{ parameters.archParameter }} $(_osParameter) ${{ parameters.crossArg }} ${{ parameters.buildArgs }} ${{ parameters.targetCxxLibraryConfigurationArgs }} $(_officialBuildParameter) $(_overrideTestScriptWindowsCmdParameter)\n displayName: ${{ parameters.displayName }}\n ${{ if eq(parameters.useContinueOnErrorDuringBuild, true) }}:\n continueOnError: ${{ parameters.shouldContinueOnError }}\n ${{ if ne(parameters.container, '') }}:\n target: ${{ parameters.container }}\n condition: ${{ parameters.condition }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\global-build-step.yml | global-build-step.yml | YAML | 903 | 0.7 | 0.105263 | 0 | node-utils | 709 | 2023-08-22T13:28:48.686396 | GPL-3.0 | false | fe65e036f2e5ebc6d52ea0658457c465 |
parameters:\n - name: stages\n type: stageList\n - name: isOfficialBuild\n type: boolean\n default: false\n\nextends:\n template: templateDispatch.yml\n parameters:\n ${{ if parameters.isOfficialBuild }}:\n templatePath: template1es.yml\n ${{ else }}:\n templatePath: templatePublic.yml\n\n stages: ${{ parameters.stages }}\n\n containers:\n linux_arm:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-arm\n env:\n ROOTFS_DIR: /crossrootfs/arm\n\n linux_armv6:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-20.04-cross-armv6-raspbian-10\n env:\n ROOTFS_DIR: /crossrootfs/armv6\n\n linux_arm64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-arm64\n env:\n ROOTFS_DIR: /crossrootfs/arm64\n\n linux_musl_x64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-amd64-musl\n env:\n ROOTFS_DIR: /crossrootfs/x64\n\n linux_musl_arm:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-arm-musl\n env:\n ROOTFS_DIR: /crossrootfs/arm\n\n linux_musl_arm64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-arm64-musl\n env:\n ROOTFS_DIR: /crossrootfs/arm64\n\n # This container contains all required toolsets to build for Android and for Linux with bionic libc.\n android:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-android-amd64\n\n # This container contains all required toolsets to build for Android and for Linux with bionic libc and a special layout of OpenSSL.\n linux_bionic:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-android-openssl-amd64\n\n # This container contains all required toolsets to build for Android as well as tooling to build docker images.\n android_docker:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-android-docker-amd64\n\n linux_x64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-amd64\n env:\n ROOTFS_DIR: /crossrootfs/x64\n\n linux_x86:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-x86\n env:\n ROOTFS_DIR: /crossrootfs/x86\n\n linux_x64_dev_innerloop:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04\n\n linux_musl_x64_dev_innerloop:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.19-WithNode\n\n linux_x64_sanitizer:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-amd64-sanitizer\n env:\n ROOTFS_DIR: /crossrootfs/x64\n\n # We use a CentOS Stream 8 image here to test building from source on CentOS Stream 9.\n SourceBuild_centos_x64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream9\n\n # AlmaLinux 8 is a RHEL 8 rebuild, so we use it to test building from source on RHEL 8.\n SourceBuild_linux_x64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:almalinux-8-source-build\n\n linux_s390x:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-s390x\n env:\n ROOTFS_DIR: /crossrootfs/s390x\n\n linux_ppc64le:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-ppc64le\n env:\n ROOTFS_DIR: /crossrootfs/ppc64le\n\n linux_riscv64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-riscv64\n env:\n ROOTFS_DIR: /crossrootfs/riscv64\n\n linux_loongarch64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-loongarch64\n env:\n ROOTFS_DIR: /crossrootfs/loongarch64\n\n debian-12-gcc14-amd64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:debian-12-gcc14-amd64\n\n linux_x64_llvmaot:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:centos-stream8\n\n browser_wasm:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-webassembly-amd64\n env:\n ROOTFS_DIR: /crossrootfs/x64\n\n wasi_wasm:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-webassembly-amd64\n env:\n ROOTFS_DIR: /crossrootfs/x64\n\n freebsd_x64:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:azurelinux-3.0-net10.0-cross-freebsd-14-amd64\n env:\n ROOTFS_DIR: /crossrootfs/x64\n\n tizen_armel:\n image: mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-cross-armel-tizen\n env:\n ROOTFS_DIR: /crossrootfs/armel\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\pipeline-with-resources.yml | pipeline-with-resources.yml | YAML | 4,854 | 0.95 | 0.044776 | 0.04717 | vue-tools | 272 | 2024-04-06T23:24:54.237617 | Apache-2.0 | false | 641a6307ff120cca3ab0ab02d7eb13f0 |
parameters:\n - name: isOfficialBuild\n type: boolean\n - name: displayName\n type: string\n - name: inputs\n type: object\n - name: condition\n type: string\n default: ''\n\nsteps:\n - ${{ if parameters.isOfficialBuild }}:\n - task: 1ES.PublishBuildArtifacts@1\n displayName: ${{ parameters.displayName }}\n inputs: ${{ parameters.inputs }}\n condition: ${{ parameters.condition }}\n - ${{ else }}:\n - task: PublishBuildArtifacts@1\n displayName: ${{ parameters.displayName }}\n inputs: ${{ parameters.inputs }}\n condition: ${{ parameters.condition }} | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\publish-build-artifacts.yml | publish-build-artifacts.yml | YAML | 590 | 0.7 | 0.047619 | 0 | python-kit | 488 | 2025-07-02T17:55:01.435410 | GPL-3.0 | false | 91582682a9f39447d8247ec2ce96a4e2 |
parameters:\n condition: false\n extraBuildArgs: ''\n isExtraPlatformsBuild: false\n nameSuffix: ''\n platforms: []\n publishArtifactsForWorkload: false\n publishWBT: false\n\njobs:\n\n#\n# Build for Browser/wasm\n#\n- template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n runtimeFlavor: mono\n platforms: ${{ parameters.platforms }}\n variables:\n # map dependencies variables to local variables\n - name: workloadSubsetArg\n ${{ if eq(parameters.publishArtifactsForWorkload, true) }}:\n value: '+mono.wasmworkload'\n ${{ else }}:\n value: ''\n - name: extraBuildArgs\n ${{ if eq(parameters.publishWBT, true) }}:\n value: /p:TestWasmBuildTests=true /p:ArchiveTests=true /p:InstallWorkloadForTesting=false\n ${{ else }}:\n value: ''\n\n jobParameters:\n isExtraPlatforms: ${{ parameters.isExtraPlatformsBuild }}\n testGroup: innerloop\n nameSuffix: ${{ parameters.nameSuffix }}_BuildOnly\n buildArgs: -s mono+libs+packs+libs.tests$(workloadSubsetArg) -c $(_BuildConfig) /p:BrowserHost=$(_hostedOs) ${{ parameters.extraBuildArgs }} /p:TestAssemblies=false $(extraBuildArgs)\n timeoutInMinutes: 120\n condition: ${{ parameters.condition }}\n postBuildSteps:\n - template: /eng/pipelines/common/wasm-post-build-steps.yml\n parameters:\n publishArtifactsForWorkload: ${{ parameters.publishArtifactsForWorkload }}\n publishWBT: ${{ parameters.publishWBT }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\wasm-build-only.yml | wasm-build-only.yml | YAML | 1,581 | 0.8 | 0.066667 | 0.095238 | python-kit | 125 | 2024-11-26T20:35:41.019484 | Apache-2.0 | false | d8a9f5f3bc8ac8f2e6b2b41c29d29e50 |
parameters:\n osGroup: ''\n sendParams: ''\n condition: ''\n displayName: ''\n environment: {}\n shouldContinueOnError: false\n\nsteps:\n- ${{ if eq(parameters.osGroup, 'windows') }}:\n - powershell: $(Build.SourcesDirectory)\eng\common\msbuild.ps1 --restore -ci -warnaserror 0 ${{ parameters.sendParams }}\n displayName: ${{ parameters.displayName }} (Windows)\n condition: and(succeeded(), ${{ and(ne(parameters.condition, false), ne(parameters.sendParams, '')) }})\n env: ${{ parameters.environment }}\n continueOnError: ${{ eq(parameters.shouldContinueOnError, true) }}\n\n- ${{ if ne(parameters.osGroup, 'windows') }}:\n - script: $(Build.SourcesDirectory)/eng/common/msbuild.sh --restore --ci --warnaserror false ${{ parameters.sendParams }}\n displayName: ${{ parameters.displayName }} (Unix)\n condition: and(succeeded(), ${{ and(ne(parameters.condition, false), ne(parameters.sendParams, '')) }})\n env: ${{ parameters.environment }}\n continueOnError: ${{ eq(parameters.shouldContinueOnError, true) }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\runtimes\send-to-helix-inner-step.yml | send-to-helix-inner-step.yml | YAML | 1,023 | 0.7 | 0.090909 | 0 | awesome-app | 229 | 2024-07-27T10:42:50.138866 | BSD-3-Clause | false | 6c3d1fc57d52724384b754b3b8f734e6 |
parameters:\n displayName: ''\n condition: true\n archType: ''\n osGroup: ''\n osSubgroup: ''\n buildConfig: ''\n creator: ''\n publishTestResults: ''\n helixAccessToken: ''\n helixBuild: ''\n helixSource: ''\n helixQueues: ''\n helixType: ''\n msbuildParallelism: '/maxcpucount'\n scenarios: ''\n timeoutPerTestCollectionInMinutes: ''\n timeoutPerTestInMinutes: ''\n runCrossGen2: ''\n compositeBuildMode: false\n helixProjectArguments: ''\n extraHelixArguments: ''\n runInUnloadableContext: ''\n tieringTest: ''\n hotColdSplitting: ''\n nativeAotTest: ''\n longRunningGcTests: ''\n gcSimulatorTests: ''\n runtimeFlavor: 'CoreCLR'\n runtimeVariant: ''\n shouldContinueOnError: false\n SuperPmiCollect: ''\n SuperPmiReplayType: ''\n SuperPmiDiffType: ''\n SuperPmiBaseJitOptions: ''\n SuperPmiDiffJitOptions: ''\n\n\nsteps:\n- template: send-to-helix-inner-step.yml\n parameters:\n osGroup: ${{ parameters.osGroup }}\n sendParams: ${{ parameters.helixProjectArguments }} ${{ parameters.msbuildParallelism }} /bl:$(Build.SourcesDirectory)/artifacts/log/SendToHelix.binlog /p:TargetArchitecture=${{ parameters.archType }} /p:TargetOS=${{ parameters.osGroup }} /p:TargetOSSubgroup=${{ parameters.osSubgroup }} /p:Configuration=${{ parameters.buildConfig }} ${{ parameters.extraHelixArguments }}\n condition: and(succeeded(), ${{ parameters.condition }})\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n displayName: ${{ parameters.displayName }}\n environment:\n _Creator: ${{ parameters.creator }}\n _PublishTestResults: ${{ parameters.publishTestResults }}\n _HelixAccessToken: ${{ parameters.helixAccessToken }}\n _HelixBuild: ${{ parameters.helixBuild }}\n _HelixSource: ${{ parameters.helixSource }}\n _HelixTargetQueues: ${{ join(',', parameters.helixQueues) }}\n _HelixType: ${{ parameters.helixType }}\n _RunCrossGen2: ${{ parameters.runCrossGen2 }}\n _CompositeBuildMode: ${{ parameters.compositeBuildMode }}\n _RunInUnloadableContext: ${{ parameters.runInUnloadableContext }}\n _TieringTest: ${{ parameters.tieringTest }}\n _HotColdSplitting: ${{ parameters.hotColdSplitting }}\n _NativeAotTest: ${{ parameters.nativeAotTest }}\n _LongRunningGcTests: ${{ parameters.longRunningGcTests }}\n _GcSimulatorTests: ${{ parameters.gcSimulatorTests }}\n _Scenarios: ${{ join(',', parameters.scenarios) }}\n _TimeoutPerTestCollectionInMinutes: ${{ parameters.timeoutPerTestCollectionInMinutes }}\n _TimeoutPerTestInMinutes: ${{ parameters.timeoutPerTestInMinutes }}\n RuntimeFlavor: ${{ parameters.runtimeFlavor }}\n _RuntimeVariant: ${{ parameters.runtimeVariant }}\n _SuperPmiCollect: ${{ parameters.SuperPmiCollect }}\n _SuperPmiReplayType: ${{ parameters.SuperPmiReplayType }}\n _SuperPmiDiffType: ${{ parameters.SuperPmiDiffType }}\n _SuperPmiBaseJitOptions: ${{ parameters.SuperPmiBaseJitOptions }}\n _SuperPmiDiffJitOptions: ${{ parameters.SuperPmiDiffJitOptions }}\n ${{ if eq(parameters.publishTestResults, 'true') }}:\n SYSTEM_ACCESSTOKEN: $(System.AccessToken)\n # TODO: remove NUGET_PACKAGES once https://github.com/dotnet/arcade/issues/1578 is fixed\n NUGET_PACKAGES: $(Build.SourcesDirectory)$(dir).packages\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\runtimes\send-to-helix-step.yml | send-to-helix-step.yml | YAML | 3,264 | 0.8 | 0.013158 | 0.013514 | vue-tools | 707 | 2023-12-30T14:28:35.607491 | Apache-2.0 | false | f5177f552c8ba5c868e3b0ebd42147a2 |
parameters:\n buildConfig: ''\n archType: ''\n osGroup: ''\n osSubgroup: ''\n name: ''\n helixType: '(unspecified)'\n container: ''\n crossBuild: false\n strategy: ''\n pool: ''\n logsName: ''\n\n # arcade-specific parameters\n condition: ''\n continueOnError: false\n dependsOn: ''\n displayName: ''\n timeoutInMinutes: ''\n enableMicrobuild: ''\n disableComponentGovernance: ''\n templatePath: 'templates'\n\n variables: {} ## any extra variables to add to the defaults defined below\n\njobs:\n- template: /eng/common/${{ parameters.templatePath }}/job/job.yml\n parameters:\n\n name: ${{ parameters.name }}\n displayName: ${{ parameters.displayName }}\n container: ${{ parameters.container }}\n condition: ${{ parameters.condition }}\n dependsOn:\n - ${{ if ne(parameters.dependsOn, '') }}:\n - ${{ parameters.dependsOn }}\n\n timeoutInMinutes: ${{ parameters.timeoutInMinutes }}\n continueOnError: ${{ parameters.continueOnError }}\n\n # Send telemetry for all builds\n enableTelemetry: true\n helixRepo: 'dotnet/runtime'\n helixType: ${{ parameters.helixType }}\n\n enableMicrobuild: ${{ parameters.enableMicrobuild }}\n enablePublishUsingPipelines: true\n\n strategy: ${{ parameters.strategy }}\n\n pool: ${{ parameters.pool }}\n\n workspace:\n clean: all\n\n ${{ if eq(parameters.osGroup, 'linux') }}:\n agentOs: Ubuntu\n ${{ if eq(parameters.osGroup, 'freebsd') }}:\n agentOs: FreeBSD\n ${{ if in(parameters.osGroup, 'osx', 'ios') }}:\n agentOs: MacOS\n ${{ if eq(parameters.osGroup, 'windows') }}:\n agentOs: windows\n\n # Component governance does not work on musl machines\n ${{ if eq(parameters.osSubGroup, '_musl') }}:\n disableComponentGovernance: true\n ${{ else }}:\n disableComponentGovernance: ${{ parameters.disableComponentGovernance }}\n\n artifacts:\n publish:\n ${{ if ne(parameters.logsName, '') }}:\n logs:\n name: '${{ parameters.logsName }}'\n\n variables:\n - name: buildConfig\n value: ${{ parameters.buildConfig }}\n\n - name: _BuildConfig\n value: ${{ parameters.buildConfig }}\n\n - ${{ if and(eq(variables['System.TeamProject'], 'internal'), ne(variables['Build.Reason'], 'PullRequest')) }}:\n - name: _HelixSource\n value: official/dotnet/runtime/$(Build.SourceBranch)\n - ${{ if and(eq(variables['System.TeamProject'], 'public'), eq(variables['Build.Reason'], 'PullRequest')) }}:\n - name: _HelixSource\n value: pr/dotnet/runtime/$(Build.SourceBranch)\n - ${{ if and(eq(variables['System.TeamProject'], 'public'), ne(variables['Build.Reason'], 'PullRequest')) }}:\n - name: _HelixSource\n value: ci/dotnet/runtime/$(Build.SourceBranch)\n\n - name: crossArg\n value: ''\n - ${{ if eq(parameters.crossBuild, true) }}:\n - name: crossArg\n value: '-cross'\n\n - ${{ each variable in parameters.variables }}:\n - ${{insert}}: ${{ variable }}\n\n steps:\n - ${{ if eq(parameters.osGroup, 'windows') }}:\n - template: /eng/pipelines/common/templates/disable-vsupdate-or-failfast.yml\n\n - checkout: self\n clean: true\n fetchDepth: $(checkoutFetchDepth)\n\n - ${{ parameters.steps }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\common\templates\runtimes\xplat-job.yml | xplat-job.yml | YAML | 3,198 | 0.8 | 0.117117 | 0.033333 | react-lib | 470 | 2023-10-06T23:50:22.093948 | MIT | false | ddfde1984d2a630f216a59b2ff497956 |
trigger:\n batch: true\n branches:\n include:\n - release/*.*\n paths:\n include:\n - '*'\n - src/libraries/System.Private.CoreLib/*\n exclude:\n - '**.md'\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n - src/installer/*\n - src/libraries/*\n - eng/pipelines/installer/*\n - eng/pipelines/libraries/*\n - eng/pipelines/runtime.yml\n\nschedules:\n - cron: "0 9,18,1 * * *" # run at 9:00, 18:00 and 01:00 (UTC) which is 2:00, 11:00 and 18:00 (PST).\n displayName: runtime-coreclr-outerloop default schedule\n branches:\n include:\n - main\n always: false # run only if there were changes since the last successful scheduled run.\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n #\n # Debug builds\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: debug\n platforms:\n - linux_arm\n - linux_arm64\n - linux_musl_arm64\n - linux_musl_x64\n - linux_x64\n - osx_arm64\n - osx_x64\n - windows_arm64\n jobParameters:\n buildArgs: -s clr -c $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: outerloop\n\n #\n # Release builds\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - linux_arm\n - linux_musl_arm64\n - linux_x64\n - osx_arm64\n - osx_x64\n - windows_x86\n jobParameters:\n buildArgs: -s clr -c $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: outerloop\n\n #\n # Checked builds\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platformGroup: all\n platforms:\n # It is too early to include osx_arm64 in platform group all\n # Adding it here will enable it also\n - osx_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: outerloop\n\n #\n # Checked test builds\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n testGroup: outerloop\n\n #\n # Checked JIT test runs\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platformGroup: all\n platforms:\n # It is too early to include osx_arm64 in platform group all\n # Adding it here will enable it to also run this test\n - osx_arm64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n\n #\n # Checked R2R test runs\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - linux_arm64\n - linux_musl_x64\n - linux_musl_arm64\n - linux_x64\n - osx_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n readyToRun: true\n displayNameArgs: R2R_CG2\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n\n #\n # PAL Tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Debug\n platforms:\n - linux_x64\n - linux_musl_x64\n - linux_arm64\n - linux_musl_arm64\n - osx_x64\n - osx_arm64\n jobParameters:\n buildArgs: -s clr.paltests+clr.paltestlist\n nameSuffix: PALTests\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/run-paltests-step.yml\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\ci.yml | ci.yml | YAML | 6,522 | 0.8 | 0.005155 | 0.13587 | node-utils | 138 | 2025-06-05T01:32:13.116867 | MIT | false | fd40d36d8b967d6c32346a7d8f9d8d59 |
trigger: none\n\nschedules:\n- cron: "0 6 * * *"\n displayName: Mon through Sun at 10:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_arm\n - linux_x64\n - linux_arm64\n - osx_arm64\n - osx_x64\n - windows_x86\n - windows_x64\n - windows_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: innerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: innerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: checked\n platforms:\n - linux_arm\n - linux_x64\n - linux_arm64\n - osx_arm64\n - osx_x64\n - windows_x86\n - windows_x64\n - windows_arm64\n jobParameters:\n testGroup: innerloop\n readyToRun: true\n compositeBuildMode: true\n displayNameArgs: Composite\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\crossgen2-composite.yml | crossgen2-composite.yml | YAML | 2,795 | 0.8 | 0 | 0 | node-utils | 397 | 2025-07-04T08:57:19.208639 | Apache-2.0 | false | 250fa22b8d9b1d02c2cb1207b30e8678 |
trigger: none\n\nschedules:\n- cron: "0 6 * * 0,1"\n displayName: Sat and Sun at 10:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - linux_arm64\n - osx_arm64\n # See https://github.com/dotnet/runtime/issues/71931\n # - osx_x64\n - windows_x64\n - windows_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: gcstress-extra\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: gcstress-extra\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - linux_arm64\n - osx_arm64\n # See https://github.com/dotnet/runtime/issues/71931\n # - osx_x64\n - windows_x64\n - windows_arm64\n jobParameters:\n testGroup: gcstress-extra\n readyToRun: true\n compositeBuildMode: true\n displayNameArgs: Composite\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\crossgen2-gcstress.yml | crossgen2-gcstress.yml | YAML | 2,846 | 0.8 | 0 | 0.054795 | node-utils | 428 | 2024-02-22T10:47:21.674849 | GPL-3.0 | false | 02981eb80ab0cdf0d41e5ddfd7ee5db6 |
trigger: none\n\nschedules:\n- cron: "0 5 * * *"\n displayName: Mon through Sun at 9:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_arm\n - linux_arm64\n - linux_x64\n - osx_arm64\n - osx_x64\n - windows_x86\n - windows_x64\n - windows_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: Checked_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: outerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: outerloop\n\n # Test most platforms in composite mode as the expected mainline shipping mode\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - linux_arm64\n - osx_arm64\n - osx_x64\n - windows_x64\n - windows_arm64\n jobParameters:\n testGroup: outerloop\n readyToRun: true\n compositeBuildMode: true\n displayNameArgs: R2R_Composite\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: Checked_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n\n # Outerloop testing in non-composite mode\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: checked\n platforms:\n - linux_arm\n - linux_arm64\n - linux_x64\n - osx_x64\n - osx_arm64\n - windows_arm64\n - windows_x64\n - windows_x86\n jobParameters:\n testGroup: outerloop\n readyToRun: true\n displayNameArgs: R2R\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: Checked_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n\n # Build release CoreCLR for Crossgen2 baseline generation\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - linux_arm\n - linux_arm64\n - linux_x64\n - osx_arm64\n - osx_x64\n - windows_x86\n - windows_x64\n - windows_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: Release_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n\n # Build Crossgen2 baselines\n # These are the various crossgen2 targets that are supported, and cover all major\n # significantly different code generators\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/crossgen2-comparison-build-job.yml\n buildConfig: Release\n platforms:\n - linux_arm\n - linux_arm64\n - linux_x64\n - osx_arm64\n - windows_x86\n - windows_x64\n jobParameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n\n # test crossgen target Windows X86\n # This job verifies that 32-bit and 64 bit crossgen2 produces the same binaries,\n # and that cross-os targeting works\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/crossgen2-comparison-job.yml\n buildConfig: Release\n platforms:\n - linux_x64\n - windows_x86\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n targetos: windows\n targetarch: x86\n\n # test target Linux X64\n # verify that cross OS targeting works\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/crossgen2-comparison-job.yml\n buildConfig: Release\n platforms:\n - windows_x64\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n targetos: Linux\n targetarch: x64\n\n # test target Windows X64\n # verify that cross OS targeting works\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/crossgen2-comparison-job.yml\n buildConfig: Release\n platforms:\n - linux_x64\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n targetos: windows\n targetarch: x64\n\n # test target Linux arm\n # verify that cross architecture targeting works\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/crossgen2-comparison-job.yml\n buildConfig: Release\n platforms:\n - linux_arm\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n targetos: Linux\n targetarch: arm\n\n # test target Linux arm64\n # verify that cross architecture targeting works\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/crossgen2-comparison-job.yml\n buildConfig: Release\n platforms:\n - linux_arm64\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n targetos: Linux\n targetarch: arm64\n\n # test target osx-arm64\n # verify that cross architecture targeting works\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/crossgen2-comparison-job.yml\n buildConfig: Release\n platforms:\n - osx_arm64\n helixQueueGroup: pr\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n targetos: OSX\n targetarch: arm64\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\crossgen2-outerloop.yml | crossgen2-outerloop.yml | YAML | 9,069 | 0.8 | 0.004082 | 0.082609 | node-utils | 419 | 2025-04-20T17:37:06.386742 | BSD-3-Clause | false | fd04d46bf04ddbca6bb747c5d85110a1 |
trigger: none\n\nschedules:\n- cron: "0 6 * * *"\n displayName: Mon through Sun at 10:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - linux_arm64\n - osx_arm64\n - osx_x64\n - windows_x64\n - windows_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: innerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: innerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - linux_arm64\n - osx_arm64\n - osx_x64\n - windows_x64\n - windows_arm64\n jobParameters:\n testGroup: innerloop\n readyToRun: true\n displayNameArgs: R2R_CG2\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n platforms:\n - linux_x64\n - osx_x64\n - windows_x64\n jobParameters:\n testGroup: innerloop\n buildArgs: -s clr+libs+libs.tests\n -c $(_BuildConfig)\n /p:TestReadyToRun=true\n /p:ArchiveTests=true\n nameSuffix: TestReadyToRun_Libraries\n timeoutInMinutes: 360\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: TestReadyToRun_$(_BuildConfig)\n\n # Run pri0 tests with hot/cold splitting enabled (only supported on x64 at the moment)\n # TODO: test on arm64 once supported\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - osx_x64\n - windows_x64\n jobParameters:\n testGroup: innerloop\n readyToRun: true\n hotColdSplitting: true\n displayNameArgs: R2R_CG2_HotColdSplitting\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\crossgen2.yml | crossgen2.yml | YAML | 4,388 | 0.8 | 0 | 0.018182 | awesome-app | 292 | 2024-11-13T23:36:39.113401 | GPL-3.0 | false | f95de75a2bda79d66e511f3733eac913 |
# This job definition automates the fuzzing tools Antigen/Fuzzlyn\ntrigger: none\n\nschedules:\n- cron: "0 14 * * 0,6"\n displayName: Sat and Sun at 6:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n # Set toolName variable from pipeline name so we can use it during template expansion\n - name: toolName\n value: ${{ variables['Build.DefinitionName'] }}\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: checked\n platforms:\n # Linux tests are built on the OSX machines.\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n - osx_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n timeoutInMinutes: 360\n postBuildSteps:\n - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) $(_BuildConfig) $(archType) $(crossArg) generatelayoutonly\n displayName: Create Core_Root\n condition: succeeded()\n - template: /eng/pipelines/coreclr/templates/jit-exploratory-steps.yml\n parameters:\n toolName: ${{ variables.toolName }}\n extraVariablesTemplates:\n - template: /eng/pipelines/coreclr/templates/jit-exploratory-variables.yml\n parameters:\n toolName: ${{ variables.toolName }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\exploratory.yml | exploratory.yml | YAML | 1,861 | 0.8 | 0 | 0.061224 | awesome-app | 618 | 2024-04-14T09:40:28.775040 | BSD-3-Clause | false | 8c86f322962ca3263c44bb23e380f548 |
trigger: none\n\nschedules:\n- cron: "0 11 * * 2,4"\n displayName: Every Tuesday and Thursday at 3:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - linux_x64\n - linux_arm64\n - windows_x64\n - windows_arm64\n - osx_x64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: gc-longrunning\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: release\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: gc-longrunning\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: release\n platforms:\n - linux_x64\n - linux_arm64\n - windows_x64\n - windows_arm64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: gc-longrunning\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\gc-longrunning.yml | gc-longrunning.yml | YAML | 2,580 | 0.8 | 0 | 0 | awesome-app | 795 | 2023-08-04T17:35:12.399777 | GPL-3.0 | false | 618f9445f25387037d4832c7259769da |
trigger: none\n\nschedules:\n- cron: "0 11 * * *"\n displayName: Mon through Sun at 3:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n # disable Linux x64 for now until OOMs are resolved.\n # - linux_x64\n - linux_arm64\n - windows_x64\n - windows_arm64\n - osx_x64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: gc-simulator\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: release\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: gc-simulator\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: release\n platforms:\n # disable Linux x64 for now until OOMs are resolved.\n # - linux_x64\n - linux_arm64\n - windows_x64\n - windows_arm64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: gc-simulator\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\gc-simulator.yml | gc-simulator.yml | YAML | 2,691 | 0.8 | 0.027027 | 0.058824 | awesome-app | 447 | 2024-10-31T09:42:21.325323 | GPL-3.0 | false | dd1b120ca8df580c33a865e9c9d95160 |
trigger: none\n\nschedules:\n- cron: "0 5 * * *"\n displayName: Mon through Sun at 9:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_arm64\n - linux_x64\n - windows_arm64\n - windows_x64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: gc-standalone\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: gc-standalone\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - linux_arm64\n - linux_x64\n - windows_arm64\n - windows_x64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: gc-standalone\n displayNameArgs: GCStandAlone\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - linux_arm64\n - linux_x64\n - windows_arm64\n - windows_x64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: gc-standalone-server\n displayNameArgs: GCStandAloneServer\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\gc-standalone.yml | gc-standalone.yml | YAML | 3,288 | 0.8 | 0 | 0 | react-lib | 296 | 2025-04-15T10:07:03.514753 | MIT | false | 98044589ab96c0c795cc73eb96ca4cc8 |
trigger: none\n\nschedules:\n- cron: "0 21 * * 6,0"\n displayName: Sat and Sun at 1:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platformGroup: gcstress\n platforms:\n # It is too early to include osx_arm64 in platform group gcstress\n # Adding it here will enable it also\n - osx_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: gcstress-extra\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: gcstress-extra\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platformGroup: gcstress\n platforms:\n # It is too early to include osx_arm64 in platform group gcstress\n # Adding it here will enable it also\n - osx_arm64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: gcstress-extra\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\gcstress-extra.yml | gcstress-extra.yml | YAML | 2,723 | 0.8 | 0 | 0.061538 | react-lib | 836 | 2024-04-19T02:33:40.641232 | Apache-2.0 | false | f75a8847d5a8fee09f67775ba1ce8184 |
trigger: none\n\nschedules:\n- cron: "0 13 * * 6,0"\n displayName: Sat and Sun at 5:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platformGroup: gcstress\n platforms:\n # It is too early to include osx_arm64 in platform group gcstress\n # Adding it here will enable it also\n - osx_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: gcstress0x3-gcstress0xc\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: gcstress0x3-gcstress0xc\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platformGroup: gcstress\n platforms:\n # It is too early to include osx_arm64 in platform group gcstress\n # Adding it here will enable it also\n - osx_arm64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: gcstress0x3-gcstress0xc\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\gcstress0x3-gcstress0xc.yml | gcstress0x3-gcstress0xc.yml | YAML | 2,750 | 0.8 | 0 | 0.061538 | awesome-app | 171 | 2024-03-04T08:01:45.562455 | MIT | false | 7f2d33469ab0ab0fe0bc7cd5d4871ca8 |
trigger: none\n\npr:\n branches:\n include:\n - main\n paths:\n include:\n - src/coreclr/ilasm/*\n - src/coreclr/ildasm/*\n\nschedules:\n- cron: "0 19 * * 6"\n displayName: Sat at 11:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - osx_x64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n testGroup: ilasm\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\ilasm.yml | ilasm.yml | YAML | 586 | 0.8 | 0 | 0 | awesome-app | 559 | 2024-06-30T19:42:43.255261 | Apache-2.0 | false | 6cc5e0b83467656e25de1a3954feed19 |
trigger: none\n\nschedules:\n- cron: "0 22 * * 0,6"\n displayName: Sun at 2:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_arm64\n testGroup: jit-cfg | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jit-cfg.yml | jit-cfg.yml | YAML | 408 | 0.7 | 0 | 0 | python-kit | 297 | 2024-03-06T07:55:13.106353 | Apache-2.0 | false | 921cf0aec4b8c839febebcf38ed6591f |
trigger: none\n\nschedules:\n- cron: "0 22 * * 0,6"\n displayName: Sun at 2:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - osx_x64\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_arm64\n testGroup: jit-experimental | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jit-experimental.yml | jit-experimental.yml | YAML | 448 | 0.7 | 0 | 0 | vue-tools | 573 | 2024-01-12T13:07:46.319674 | Apache-2.0 | false | 8b1076ef2114ccc8576e9cb167025767 |
trigger:\n batch: false\n branches:\n include:\n - main\n - release/*.*\n paths:\n include:\n - src/coreclr/jit/*\n - src/coreclr/inc/jiteeversionguid.h\n\n# This pipeline is supposed to be run only on merged changes\n# and should not be triggerable from a PR.\npr: none\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - osx_arm64\n - osx_x64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n jobParameters:\n disableComponentGovernance: true # Not a shipping artifact\n buildArgs: -s clr.alljits+clr.spmi -c $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/upload-jits-steps.yml\n extraVariablesTemplates:\n - template: /eng/pipelines/coreclr/templates/jit-python-variables.yml\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - osx_arm64\n - osx_x64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n jobParameters:\n disableComponentGovernance: true # Not a shipping artifact\n buildArgs: -s clr.alljits+clr.spmi -c $(_BuildConfig) /p:NoPgoOptimize=true\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/upload-jits-steps.yml\n extraVariablesTemplates:\n - template: /eng/pipelines/coreclr/templates/jit-python-variables.yml\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitrollingbuild.yml | jitrollingbuild.yml | YAML | 2,052 | 0.8 | 0 | 0.032787 | python-kit | 662 | 2024-07-27T06:07:44.860285 | MIT | false | 44b516aaba121348b1e27d6f3dbe75f4 |
trigger: none\n\nschedules:\n- cron: "0 19 * * 6"\n displayName: Sat at 11:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - linux_arm64\n - windows_arm64\n testGroup: jitstress-isas-arm\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitstress-isas-arm.yml | jitstress-isas-arm.yml | YAML | 402 | 0.7 | 0 | 0 | react-lib | 11 | 2023-10-10T15:29:35.488052 | MIT | false | e0705e3467f2e36379be17ae6cdbc06d |
# This pipeline only runs on GitHub PRs, not on merges.\ntrigger: none\n\nschedules:\n- cron: "30 19 * * 6"\n displayName: Sat at 11:30 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - linux_x64\n - windows_x64\n - windows_x86\n testGroup: jitstress-isas-avx512\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitstress-isas-avx512.yml | jitstress-isas-avx512.yml | YAML | 460 | 0.8 | 0 | 0.052632 | awesome-app | 543 | 2025-01-08T03:47:51.114220 | MIT | false | 532e9d2f66f4a3fd444dc8f8bb7a8668 |
trigger: none\n\nschedules:\n- cron: "30 19 * * 6"\n displayName: Sat at 11:30 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_x64\n - linux_x64\n - windows_x64\n - windows_x86\n testGroup: jitstress-isas-x86\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitstress-isas-x86.yml | jitstress-isas-x86.yml | YAML | 415 | 0.7 | 0 | 0 | react-lib | 613 | 2025-06-26T16:09:01.405852 | BSD-3-Clause | false | 578588bf1ff2eb04eba2d95543bb71ad |
trigger: none\n\nschedules:\n- cron: "0 18 * * 0"\n displayName: Sun at 10:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - osx_x64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n testGroup: jitstress-random\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitstress-random.yml | jitstress-random.yml | YAML | 482 | 0.7 | 0 | 0 | vue-tools | 742 | 2025-06-14T09:46:49.574982 | Apache-2.0 | false | b7e7e8b9035ffd7cf377e59a4dec4b07 |
trigger: none\n\nschedules:\n- cron: "0 4 * * *"\n displayName: Daily at 8:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - osx_x64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n testGroup: jitstress\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitstress.yml | jitstress.yml | YAML | 475 | 0.7 | 0 | 0 | vue-tools | 147 | 2024-10-10T20:17:34.602180 | MIT | false | 7e89cb52825f7d998a88131bf85ee216 |
trigger: none\n\nschedules:\n- cron: "0 17 * * 6,0"\n displayName: Sat and Sun at 9:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - osx_x64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n testGroup: jitstress2-jitstressregs\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitstress2-jitstressregs.yml | jitstress2-jitstressregs.yml | YAML | 499 | 0.7 | 0 | 0 | python-kit | 814 | 2025-05-08T17:44:45.269513 | Apache-2.0 | false | 9b2969059382c1f4b2f762d4096d72ef |
trigger: none\n\nschedules:\n- cron: "0 19 * * 0"\n displayName: Sun at 11:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - linux_x64\n - windows_x64\n - windows_x86\n testGroup: jitstressregs-x86\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitstressregs-x86.yml | jitstressregs-x86.yml | YAML | 399 | 0.7 | 0 | 0 | vue-tools | 377 | 2024-01-13T12:39:36.233858 | BSD-3-Clause | false | 84570edad749847592c4ff3ac907d8e7 |
trigger: none\n\nschedules:\n- cron: "0 10 * * 6,0"\n displayName: Sat and Sun at 2:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - osx_x64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n testGroup: jitstressregs | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\jitstressregs.yml | jitstressregs.yml | YAML | 487 | 0.7 | 0 | 0 | python-kit | 838 | 2024-11-17T05:03:25.873639 | BSD-3-Clause | false | e5bab494e9897e50d00cd3e2278f8c0c |
trigger: none\n\n# This pipeline currently has too many failures to be enabled by schedule.\n# schedules:\n# - cron: "0 10 * * 0"\n# displayName: Sun at 2:00 AM (UTC-8:00)\n# branches:\n# include:\n# - main\n# always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n helixQueueGroup: libraries\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n platformGroup: gcstress\n jobParameters:\n # Default timeout is 150 minutes (2.5 hours), which is not enough for stress.\n timeoutInMinutes: 660\n buildArgs: -s clr+libs+libs.tests -rc Checked -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n extraHelixArguments: /maxcpucount:10\n scenarios:\n - heapverify1\n - gcstress0xc_disabler2r\n - gcstress0xc_disabler2r_jitstress2\n - gcstress0xc_disabler2r_heapverify1\n - gcstress0xc_jitstress1\n - gcstress0xc_jitstress2\n - gcstress0xc_jitminopts_heapverify1\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\libraries-gcstress-extra.yml | libraries-gcstress-extra.yml | YAML | 1,591 | 0.8 | 0.022222 | 0.219512 | vue-tools | 88 | 2024-05-09T13:58:51.015545 | GPL-3.0 | false | b595d2abb7ac9581ca75203ebddc7847 |
trigger: none\n\n# This pipeline currently has too many failures to be enabled by schedule.\n# schedules:\n# - cron: "0 10 * * 6"\n# displayName: Sat at 2:00 AM (UTC-8:00)\n# branches:\n# include:\n# - main\n# always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n helixQueueGroup: libraries\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n platformGroup: gcstress\n jobParameters:\n # Default timeout is 150 minutes (2.5 hours), which is not enough for stress.\n timeoutInMinutes: 660\n buildArgs: -s clr+libs+libs.tests -rc Checked -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n extraHelixArguments: /maxcpucount:10\n scenarios:\n # Disable gcstress0x3 for now; it causes lots of test timeouts. Investigate this after\n # gcstress0xc runs are clean. Tracking issue: https://github.com/dotnet/runtime/issues/38903.\n # - gcstress0x3\n - gcstress0xc\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\libraries-gcstress0x3-gcstress0xc.yml | libraries-gcstress0x3-gcstress0xc.yml | YAML | 1,682 | 0.8 | 0.041667 | 0.272727 | node-utils | 205 | 2025-04-22T21:57:19.971150 | MIT | false | 4de23b8fab25929b3d87ba34c9e5e08c |
trigger: none\n\nschedules:\n- cron: "0 18 * * 6"\n displayName: Sat at 10:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n helixQueueGroup: libraries\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n platforms:\n - linux_x64\n - linux_arm\n - linux_arm64\n - windows_x86\n - windows_x64\n - windows_arm64\n jobParameters:\n # Default timeout is 150 minutes (2.5 hours), which is not enough for stress.\n timeoutInMinutes: 360\n buildArgs: -s clr+libs+libs.tests -rc Checked -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n extraHelixArguments: /maxcpucount:10\n scenarios:\n - jitstress_random_1\n - jitstress_random_2\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\libraries-jitstress-random.yml | libraries-jitstress-random.yml | YAML | 1,375 | 0.8 | 0.022222 | 0.02439 | node-utils | 525 | 2025-04-26T20:39:10.860176 | MIT | false | d2196f9868c118b92427296f9cefed7d |
trigger: none\n\nschedules:\n- cron: "0 7 * * *"\n displayName: Daily at 11:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n helixQueueGroup: libraries\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n platforms:\n - linux_x64\n - linux_arm\n - linux_arm64\n - windows_x86\n - windows_x64\n - windows_arm64\n jobParameters:\n # Default timeout is 150 minutes (2.5 hours), which is not enough for stress.\n timeoutInMinutes: 360\n buildArgs: -s clr+libs+libs.tests -rc Checked -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n extraHelixArguments: /maxcpucount:10\n scenarios:\n - no_tiered_compilation\n - jitminopts\n - jitstress1\n - jitstress1_tiered\n - jitstress2\n - jitstress2_tiered\n - disabler2r\n - tailcallstress\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\libraries-jitstress.yml | libraries-jitstress.yml | YAML | 1,587 | 0.8 | 0.019608 | 0.021277 | node-utils | 52 | 2023-08-06T08:14:32.119019 | GPL-3.0 | false | edfde3def9195a290dec245d66835d5c |
trigger: none\n\nschedules:\n- cron: "0 9 * * 6"\n displayName: Sat at 1:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n helixQueueGroup: libraries\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n platforms:\n - linux_x64\n - linux_arm\n - linux_arm64\n - windows_x86\n - windows_x64\n - windows_arm64\n jobParameters:\n # Default timeout is 150 minutes (2.5 hours), which is not enough for stress.\n timeoutInMinutes: 360\n buildArgs: -s clr+libs+libs.tests -rc Checked -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n extraHelixArguments: /maxcpucount:10\n scenarios:\n - jitstress2_jitstressregs1\n - jitstress2_jitstressregs2\n - jitstress2_jitstressregs3\n - jitstress2_jitstressregs4\n - jitstress2_jitstressregs8\n - jitstress2_jitstressregs0x10\n - jitstress2_jitstressregs0x80\n - jitstress2_jitstressregs0x1000\n - jitstress2_jitstressregs0x2000 | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\libraries-jitstress2-jitstressregs.yml | libraries-jitstress2-jitstressregs.yml | YAML | 1,738 | 0.8 | 0.019608 | 0.020833 | python-kit | 71 | 2024-03-01T00:54:22.576123 | GPL-3.0 | false | 4a7da70b25679e8cfe5f59b6d6bfe724 |
trigger: none\n\nschedules:\n- cron: "0 9 * * 0"\n displayName: Sun at 1:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n helixQueueGroup: libraries\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n platforms:\n - linux_x64\n - linux_arm\n - linux_arm64\n - windows_x86\n - windows_x64\n - windows_arm64\n jobParameters:\n # Default timeout is 150 minutes (2.5 hours), which is not enough for stress.\n timeoutInMinutes: 360\n buildArgs: -s clr+libs+libs.tests -rc Checked -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n extraHelixArguments: /maxcpucount:10\n scenarios:\n - jitstressregs1\n - jitstressregs2\n - jitstressregs3\n - jitstressregs4\n - jitstressregs8\n - jitstressregs0x10\n - jitstressregs0x80\n - jitstressregs0x1000\n - jitstressregs0x2000\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\libraries-jitstressregs.yml | libraries-jitstressregs.yml | YAML | 1,640 | 0.8 | 0.019231 | 0.020833 | python-kit | 993 | 2025-01-19T03:38:26.406878 | BSD-3-Clause | false | ad5c1eaf8a9e4f1780341ca45ef4a184 |
trigger: none\n\nschedules:\n- cron: "0 16 * * 0,6"\n displayName: Sat and Sun at 8:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n helixQueueGroup: libraries\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n platforms:\n - windows_arm64\n jobParameters:\n # Default timeout is 150 minutes (2.5 hours), which is not enough for stress.\n timeoutInMinutes: 660\n buildArgs: -s clr+libs+libs.tests -rc Checked -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n extraHelixArguments: /maxcpucount:10\n scenarios:\n - defaultpgo\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: Release\n helixQueueGroup: libraries\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n platforms:\n - linux_x64\n - linux_arm\n - linux_arm64\n - windows_x86\n - windows_x64\n jobParameters:\n # Default timeout is 150 minutes (2.5 hours), which is not enough for stress.\n timeoutInMinutes: 660\n buildArgs: -s clr+libs+libs.tests -rc Checked -c $(_BuildConfig) /p:ArchiveTests=true\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n extraHelixArguments: /maxcpucount:10\n scenarios:\n - defaultpgo\n - fullpgo\n - fullpgo_methodprofiling\n - fullpgo_random_gdv\n - fullpgo_random_gdv_methodprofiling_only\n - fullpgo_random_gdv_edge\n - jitosr_stress\n - jitosr_stress_random\n - syntheticpgo\n - syntheticpgo_blend\n - jitrlcse\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\libraries-pgo.yml | libraries-pgo.yml | YAML | 2,588 | 0.8 | 0.027397 | 0.029412 | python-kit | 86 | 2023-09-25T05:21:19.981500 | Apache-2.0 | false | 19c39d6fd0c06fc05bab42ccd8b82f64 |
parameters:\n buildConfig: ''\n archType: ''\n osGroup: ''\n osSubgroup: ''\n testBuildArgs: ''\n helixQueues: ''\n liveLibrariesBuildConfig: ''\n\nsteps:\n # Build coreclr native test output and send to helix\n - template: /eng/pipelines/common/templates/runtimes/build-runtime-tests-and-send-to-helix.yml\n parameters:\n buildConfig: ${{ parameters.buildConfig }}\n archType: ${{ parameters.archType }}\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n runtimeFlavor: coreclr\n runtimeVariant: ''\n testBuildArgs: ${{ parameters.testBuildArgs }}\n nativeAotTest: true\n helixQueues: ${{ parameters.helixQueues }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\nativeaot-post-build-steps.yml | nativeaot-post-build-steps.yml | YAML | 758 | 0.8 | 0 | 0.045455 | awesome-app | 712 | 2024-12-01T08:41:51.874883 | BSD-3-Clause | false | e6738dae0a09eaf14889db6196051701 |
trigger: none\n\nschedules:\n- cron: "0 8 * * *"\n displayName: Mon through Sun at 12:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n testGroup: pgo\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\pgo.yml | pgo.yml | YAML | 466 | 0.7 | 0 | 0 | node-utils | 584 | 2024-06-07T04:19:53.865946 | BSD-3-Clause | false | 8b694f35ac8eb107f3d9cf48f5ba6314 |
trigger: none\n\nschedules:\n- cron: "0 6 * * 6"\n displayName: Sat at 06:00 AM UTC\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-outerloop-pipeline.yml\n parameters:\n platforms:\n - osx_arm64\n - linux_arm\n - linux_arm64\n - linux_x64\n - windows_x64\n - windows_x86\n - windows_arm64\n testGroup: pgostress\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\pgostress.yml | pgostress.yml | YAML | 453 | 0.7 | 0 | 0 | python-kit | 769 | 2024-09-23T03:27:33.031842 | BSD-3-Clause | false | 4d1a292c1e5c6adbf7e057ec5037eda3 |
trigger: none\n\nschedules:\n- cron: "0 2 * * 0,1"\n displayName: Sat and Sun at 6:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platformGroup: gcstress\n platforms:\n # It is too early to include osx_arm64 in platform group gcstress\n # Adding it here will enable it also\n - osx_arm64\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: r2r-extra\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: r2r-extra\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platformGroup: gcstress # r2r-extra testGroup runs gcstress0xf scenario\n platforms:\n # It is too early to include osx_arm64 in platform group gcstress\n # Adding it here will enable it also\n - osx_arm64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: r2r-extra\n readyToRun: true\n displayNameArgs: R2R\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\r2r-extra.yml | r2r-extra.yml | YAML | 2,817 | 0.8 | 0 | 0.059701 | python-kit | 682 | 2023-08-09T11:00:37.689770 | Apache-2.0 | false | 414b7742acc6050370e349faf18d8016 |
trigger: none\n\nschedules:\n- cron: "0 5 * * *"\n displayName: Mon through Sun at 9:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_arm\n - linux_arm64\n - linux_x64\n - osx_arm64\n - windows_arm64\n - windows_x64\n - windows_x86\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: outerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: outerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - linux_arm\n - linux_arm64\n - linux_x64\n - osx_arm64\n - windows_arm64\n - windows_x64\n - windows_x86\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n readyToRun: true\n displayNameArgs: R2R\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\r2r.yml | r2r.yml | YAML | 2,741 | 0.8 | 0 | 0 | react-lib | 46 | 2024-11-20T12:45:54.926406 | MIT | false | 944c1724f8495ce49ba0f0e2dbfab390 |
trigger: none\n\nschedules:\n- cron: "0 13 * * 6,0"\n displayName: Sat and Sun at 5:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - windows_x64\n - windows_x86\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: outerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: outerloop\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms:\n - linux_x64\n - windows_x64\n - windows_x86\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: outerloop\n runInUnloadableContext: true\n displayNameArgs: RunInContext\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\runincontext.yml | runincontext.yml | YAML | 2,573 | 0.8 | 0 | 0 | node-utils | 449 | 2024-11-11T20:46:47.974659 | BSD-3-Clause | false | 340af2474f3fa8ebce3a6e04e495637d |
\n# This pipeline includes the Native AOT tests that we don't have resources to\n# run on every PR but that we want to still have test coverage, we run this\n# pipeline on a schedule and also developers can run it via /azp run command on\n# PRs. This pipeline permits us to have the main runtime pipeline run the same\n# platforms in PRs and Scheduled builds.\n\n# Setting batch to true, triggers one build at a time.\n# if there is a push while a build in progress, it will wait,\n# until the running build finishes, and produce a build with all the changes\n# that happened during the last build.\ntrigger:\n batch: true\n branches:\n include:\n - release/*.*\n paths:\n include:\n - '*'\n exclude:\n - '**.md'\n - eng/Version.Details.xml\n - .devcontainer/*\n - .github/*\n - docs/*\n - LICENSE.TXT\n - PATENTS.TXT\n - THIRD-PARTY-NOTICES.TXT\n\nschedules:\n - cron: "0 9,21 * * *" # run at 9:00 and 21:00 (UTC) which is 1:00 and 13:00 (PST).\n displayName: Nativeaot-outerloop main schedule\n branches:\n include:\n - main\n always: false # run only if there were changes since the last successful scheduled run.\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n #\n # CoreCLR NativeAOT release build and libraries tests\n # Only when CoreCLR or library is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n platforms:\n - windows_x64\n - windows_arm64\n - windows_x86\n - osx_x64\n - osx_arm64\n - linux_x64\n - linux_arm\n - linux_arm64\n - linux_musl_x64\n - linux_musl_arm64\n jobParameters:\n testGroup: innerloop\n isSingleFile: true\n nameSuffix: NativeAOT_Libs\n buildArgs: -s clr.aot+libs+libs.tests -c $(_BuildConfig) /p:TestNativeAot=true /p:ArchiveTests=true /p:IlcUseServerGc=false /p:RunAnalyzers=false\n timeoutInMinutes: 300 # doesn't normally take this long, but I've seen Helix queues backed up for 160 minutes\n includeAllPlatforms: true\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: NativeAOT_$(_BuildConfig)\n\n #\n # CoreCLR NativeAOT release build (checked runtime) and libraries tests\n # Only when CoreCLR or library is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n platforms:\n - windows_x64\n - linux_arm64\n jobParameters:\n testGroup: innerloop\n isSingleFile: true\n nameSuffix: NativeAOT_Checked_Libs\n buildArgs: -s clr.aot+libs+libs.tests -c $(_BuildConfig) -rc Checked /p:TestNativeAot=true /p:ArchiveTests=true /p:IlcUseServerGc=false /p:RunAnalyzers=false\n timeoutInMinutes: 360\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: NativeAOT_Checked_$(_BuildConfig)\n\n #\n # CoreCLR NativeAOT release build (checked runtime) - SizeOpt and libraries tests\n # Only when CoreCLR or library is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n platforms:\n - windows_x64\n - linux_x64\n jobParameters:\n testGroup: innerloop\n isSingleFile: true\n nameSuffix: NativeAOT_Checked_Libs_SizeOpt\n buildArgs: -s clr.aot+libs+libs.tests -c $(_BuildConfig) -rc Checked /p:TestNativeAot=true /p:ArchiveTests=true /p:OptimizationPreference=Size /p:IlcUseServerGc=false /p:RunAnalyzers=false\n timeoutInMinutes: 240\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: NativeAOT_Checked_SizeOpt_$(_BuildConfig)\n\n #\n # CoreCLR NativeAOT release build (checked runtime) - SpeedOpt and libraries tests\n # Only when CoreCLR or library is changed\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/libraries/helix-queues-setup.yml\n buildConfig: Release\n platforms:\n - windows_x64\n - linux_x64\n jobParameters:\n testGroup: innerloop\n isSingleFile: true\n nameSuffix: NativeAOT_Checked_Libs_SpeedOpt\n buildArgs: -s clr.aot+libs+libs.tests -c $(_BuildConfig) -rc Checked /p:TestNativeAot=true /p:ArchiveTests=true /p:OptimizationPreference=Speed /p:IlcUseServerGc=false /p:RunAnalyzers=false\n timeoutInMinutes: 240\n # extra steps, run tests\n postBuildSteps:\n - template: /eng/pipelines/libraries/helix.yml\n parameters:\n creator: dotnet-bot\n testRunNamePrefixSuffix: NativeAOT_Checked_SpeedOpt_$(_BuildConfig)\n\n #\n # CoreCLR NativeAOT checked build and Pri1 tests\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n buildConfig: Checked\n platforms:\n - windows_x64\n - windows_x86\n - linux_x64\n - linux_arm\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n timeoutInMinutes: 480\n nameSuffix: NativeAOT_Pri1\n buildArgs: -s clr.aot+libs -rc $(_BuildConfig) -lc Release /p:RunAnalyzers=false\n postBuildSteps:\n - template: /eng/pipelines/coreclr/nativeaot-post-build-steps.yml\n parameters:\n creator: dotnet-bot\n testBuildArgs: 'nativeaot /p:IlcUseServerGc=false'\n liveLibrariesBuildConfig: Release\n testRunNamePrefixSuffix: NativeAOT_Pri1_$(_BuildConfig)\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n parameters:\n testGroup: outerloop\n liveLibrariesBuildConfig: Release\n\n #\n # CoreCLR NativeAOT checked build and Pri0 tests\n # Test windows_x64 with CET and CFG\n #\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n helixQueueGroup: cet\n buildConfig: Checked\n platforms:\n - windows_x64\n variables:\n - name: timeoutPerTestInMinutes\n value: 60\n - name: timeoutPerTestCollectionInMinutes\n value: 180\n jobParameters:\n timeoutInMinutes: 300 # doesn't normally take this long, but we have had Helix queues backed up for over an hour\n nameSuffix: NativeAOT_Pri0_CET_CFG\n buildArgs: -s clr.aot+libs -rc $(_BuildConfig) -lc Release /p:RunAnalyzers=false\n postBuildSteps:\n - template: /eng/pipelines/coreclr/nativeaot-post-build-steps.yml\n parameters:\n creator: dotnet-bot\n testBuildArgs: 'nativeaot /p:IlcUseServerGc=false /p:ControlFlowGuard=Guard'\n liveLibrariesBuildConfig: Release\n testRunNamePrefixSuffix: NativeAOT_Pri0_CET_CFG_$(_BuildConfig)\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/test-variables.yml\n parameters:\n testGroup: innerloop\n liveLibrariesBuildConfig: Release | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\runtime-nativeaot-outerloop.yml | runtime-nativeaot-outerloop.yml | YAML | 8,987 | 0.8 | 0.022422 | 0.169014 | awesome-app | 10 | 2024-06-20T13:22:52.669372 | GPL-3.0 | false | 9b5515d297ac5f47faf5ede24bd18511 |
trigger: none\n\nschedules:\n- cron: "0 10 * * 6,0"\n displayName: Sat and Sun at 2:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - windows_x64\n - windows_x86\n jobParameters:\n buildArgs: -s clr.alljits+clr.spmi -c $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin/coreclr\n includeRootFolder: false\n archiveType: $(archiveType)\n tarCompression: $(tarCompression)\n archiveExtension: $(archiveExtension)\n artifactName: CheckedJIT_$(osGroup)$(osSubgroup)_$(archType)\n displayName: JIT and SuperPMI Assets\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n - windows_x86\n - linux_x64\n jobParameters:\n buildArgs: -s clr.alljits+clr.spmi -c $(_BuildConfig) /p:NoPgoOptimize=true\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin/coreclr\n includeRootFolder: false\n archiveType: $(archiveType)\n tarCompression: $(tarCompression)\n archiveExtension: $(archiveExtension)\n artifactName: ReleaseJIT_$(osGroup)$(osSubgroup)_$(archType)\n displayName: JIT and SuperPMI Assets\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/superpmi-asmdiffs-checked-release-job.yml\n buildConfig: checked\n platforms:\n - windows_x64\n - windows_x86\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\superpmi-asmdiffs-checked-release.yml | superpmi-asmdiffs-checked-release.yml | YAML | 2,542 | 0.7 | 0 | 0 | awesome-app | 664 | 2025-04-09T22:48:14.223491 | GPL-3.0 | false | e7b14cc8654b4b852d0d44ecedb32e5c |
# This job definition automates the SuperPMI collection process for the "production" pipeline.\n\n# Trigger this job if the JIT-EE GUID changes, which invalidates previous SuperPMI\n# collections.\ntrigger:\n batch: false\n branches:\n include:\n - main\n paths:\n include:\n - src/coreclr/inc/jiteeversionguid.h\n\n# This pipeline is supposed to be run only on merged changes\n# and should not be triggerable from a PR.\npr: none\n\nschedules:\n- cron: "0 17 * * 0"\n displayName: Sun at 9:00 AM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/superpmi-collect-pipeline.yml\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\superpmi-collect.yml | superpmi-collect.yml | YAML | 703 | 0.8 | 0.066667 | 0.2 | awesome-app | 308 | 2024-09-03T20:36:42.375067 | Apache-2.0 | false | 93488d1560e004d5168974f1babe8fca |
parameters:\n- name: spmi_jitoptions_base\n displayName: 'JIT options (base): semicolon separated list in format `A=B;C=D` without DOTNET_ prefix, passed to `superpmi.py -base_jit_option`'\n type: string\n default: ' '\n- name: spmi_jitoptions_diff\n displayName: 'JIT options (diff): semicolon separated list in format `A=B;C=D` without DOTNET_ prefix, passed to `superpmi.py -diff_jit_option`'\n type: string\n default: ' '\n\n# This pipeline only runs on GitHub PRs, not on merges.\ntrigger: none\n\n# Only run on changes to the JIT directory.\npr:\n branches:\n include:\n - main\n paths:\n # If you are changing these and start including eng/common, adjust the Maestro subscriptions\n # so that this build can block dependency auto-updates (this build is currently ignored)\n include:\n - eng/pipelines/coreclr/superpmi-diffs.yml\n - src/coreclr/jit/*\n - src/coreclr/gcinfo/*\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n # Don't run if the JIT-EE GUID has changed,\n # since there won't be any SuperPMI collections with the new GUID until the collection\n # pipeline completes after this PR is merged.\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-paths-job.yml\n parameters:\n paths:\n - subset: jiteeversionguid\n include:\n - src/coreclr/inc/jiteeversionguid.h\n\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms:\n - windows_x64\n - windows_x86\n jobParameters:\n buildArgs: -s clr.alljits+clr.alljitscommunity+clr.spmi -c $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin/coreclr\n includeRootFolder: false\n archiveType: $(archiveType)\n tarCompression: $(tarCompression)\n archiveExtension: $(archiveExtension)\n artifactName: CheckedJIT_$(osGroup)$(osSubgroup)_$(archType)\n displayName: JIT and SuperPMI Assets\n condition: not(eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_jiteeversionguid.containsChange'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: release\n platforms:\n - windows_x64\n - windows_x86\n - linux_x64\n jobParameters:\n buildArgs: -s clr.alljits+clr.spmi -c $(_BuildConfig) /p:NoPgoOptimize=true\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin/coreclr\n includeRootFolder: false\n archiveType: $(archiveType)\n tarCompression: $(tarCompression)\n archiveExtension: $(archiveExtension)\n artifactName: ReleaseJIT_$(osGroup)$(osSubgroup)_$(archType)\n displayName: JIT and SuperPMI Assets\n condition: not(eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_jiteeversionguid.containsChange'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/superpmi-diffs-job.yml\n buildConfig: checked\n platforms:\n - windows_x64\n - windows_x86\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n condition: not(eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_jiteeversionguid.containsChange'], true))\n diffType: asmdiffs\n baseJitOptions: ${{ parameters.spmi_jitoptions_base }}\n diffJitOptions: ${{ parameters.spmi_jitoptions_diff }}\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/superpmi-diffs-job.yml\n buildConfig: checked\n platforms:\n - windows_x64\n - windows_x86\n - linux_x64\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n condition: not(eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_jiteeversionguid.containsChange'], true))\n diffType: tpdiff\n baseJitOptions: ${{ parameters.spmi_jitoptions_base }}\n diffJitOptions: ${{ parameters.spmi_jitoptions_diff }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\superpmi-diffs.yml | superpmi-diffs.yml | YAML | 5,173 | 0.8 | 0.01626 | 0.061404 | vue-tools | 707 | 2023-11-25T15:10:52.860387 | GPL-3.0 | false | 6db5fdb7116a52846a23f882437c0217 |
trigger: none\n\nschedules:\n- cron: "0 7 * * *"\n displayName: Daily at 11:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-replay-pipeline.yml\n parameters:\n platforms:\n - windows_x64\n replayType: apx | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\superpmi-replay-apx.yml | superpmi-replay-apx.yml | YAML | 349 | 0.7 | 0 | 0 | node-utils | 685 | 2023-10-15T22:32:37.194785 | MIT | false | 82a9a0d2648bfd90b9b5a7f120ef93c6 |
trigger: none\n\npr:\n branches:\n include:\n - main\n paths:\n include:\n - src/coreclr/jit/lsra*.*\n\nschedules:\n- cron: "0 7 * * *"\n displayName: Daily at 11:00 PM (UTC-8:00)\n branches:\n include:\n - main\n always: true\n\nvariables:\n - template: /eng/pipelines/common/variables.yml\n\nextends:\n template: /eng/pipelines/coreclr/templates/jit-replay-pipeline.yml\n parameters:\n platforms:\n - windows_x64\n - windows_x86\n replayType: standard\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\superpmi-replay.yml | superpmi-replay.yml | YAML | 466 | 0.7 | 0 | 0 | python-kit | 398 | 2025-01-03T16:10:11.375409 | MIT | false | 631d9a53aad1c4afa2a870220be601d3 |
parameters:\n buildConfig: ''\n archType: ''\n osGroup: ''\n osSubgroup: ''\n container: ''\n helixQueues: ''\n runtimeVariant: ''\n crossBuild: false\n variables: {}\n pool: ''\n\n # When set to a non-empty value (Debug / Release), it determines libraries\n # build configuration to use for the tests. Setting this property implies\n # a dependency of this job on the appropriate libraries build and is used\n # to construct the name of the Azure artifact representing libraries build\n # to use for building the tests.\n liveLibrariesBuildConfig: ''\n\n### Crossgen-comparison build job\n###\n### Ensure that the output of cross-architecture, e.g. x64-hosted-arm-targeting,\n### crossgen matches that of native, e.g. arm-hosted-arm-targeting, crossgen.\n\njobs:\n- template: /eng/pipelines/common/templates/runtimes/xplat-job.yml\n parameters:\n buildConfig: ${{ parameters.buildConfig }}\n archType: ${{ parameters.archType }}\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n runtimeVariant: ${{ parameters.runtimeVariant }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n helixType: 'test/crossgen-comparison/'\n pool: ${{ parameters.pool }}\n\n # Compute job name from template parameters\n name: ${{ format('test_crossgen2_comparison_build_{0}{1}_{2}_{3}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }}\n displayName: ${{ format('Test crossgen2-comparison build {0}{1} {2} {3}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig) }}\n\n crossBuild: ${{ parameters.crossBuild }}\n\n variables:\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - group: DotNet-HelixApi-Access\n - name: hostArchType\n value: x64\n - name: targetFlavor\n value: $(osGroup).$(archType).$(buildConfigUpper)\n - name: crossFlavor\n value: $(osGroup).$(hostArchType)_$(archType).$(buildConfigUpper)\n - name: artifactsDirectory\n value: $(Build.SourcesDirectory)$(dir)artifacts\n - name: binDirectory\n value: $(artifactsDirectory)$(dir)bin\n - name: productDirectory\n value: $(binDirectory)$(dir)coreclr\n - name: workItemDirectory\n value: $(artifactsDirectory)$(dir)tests$(dir)coreclr$(dir)$(targetFlavor)$(dir)Tests$(dir)CrossCompileRoot\n - name: crossgencompare_build_artifact\n value: crossgen_comparison_build_$(osGroup)$(osSubgroup)_$(archType)\n - ${{ if eq(parameters.osGroup, 'windows') }}:\n - name: target_crossgen2_os\n value: windows\n - ${{ if eq(parameters.osGroup, 'linux') }}:\n - name: target_crossgen2_os\n value: linux\n - ${{ if eq(parameters.osGroup, 'osx') }}:\n - name: target_crossgen2_os\n value: osx\n - name: crossgen2location\n value: $(binDirectory)$(dir)crossgen2_inbuild$(dir)$(archType)$(dir)$(buildConfigUpper)$(dir)crossgen2.dll\n - name: librariesProductDllDir\n value: $(Build.SourcesDirectory)$(dir)artifacts$(dir)bin$(dir)runtime$(dir)net10.0-$(osGroup)$(osSubgroup)-$(buildConfig)-$(archType)\n\n - ${{ parameters.variables }}\n\n # Test job depends on the corresponding build job\n dependsOn:\n - build_${{ parameters.osGroup }}${{ parameters.osSubgroup }}_${{ parameters.archType }}_${{ parameters.buildConfig }}_\n\n # Run all steps in the container.\n # Note that the containers are defined in platform-matrix.yml\n container: ${{ parameters.container }}\n timeoutInMinutes: 180 # 3 hrs\n\n steps:\n\n # Download product build\n - template: /eng/pipelines/common/download-artifact-step.yml\n parameters:\n unpackFolder: $(Build.SourcesDirectory)/artifacts/bin\n artifactFileName: 'Release_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)$(archiveExtension)'\n artifactName: 'Release_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)'\n displayName: 'product build'\n\n # Populate Core_Root\n - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) $(buildConfig) $(archType) $(crossArg) generatelayoutonly\n displayName: Populate Core_Root\n\n # Create work item directory and populate with assemblies\n - ${{ if ne(parameters.osGroup, 'windows') }}:\n - script: |\n mkdir -p $(workItemDirectory)\n mkdir -p $(workItemDirectory)/log\n mkdir -p $(workItemDirectory)/dlls\n cp $(librariesProductDllDir)/* $(workItemDirectory)/dlls\n cp $(productDirectory)/$(targetFlavor)/IL/System.Private.CoreLib.dll $(workItemDirectory)/dlls\n displayName: Create directories\n failOnStderr: true\n - ${{ if eq(parameters.osGroup, 'windows') }}:\n - script: |\n md $(workItemDirectory)\log\n md $(workItemDirectory)\dlls\n echo copy $(librariesProductDllDir)\* $(workItemDirectory)\dlls\n copy $(librariesProductDllDir)\* $(workItemDirectory)\dlls\n echo copy $(productDirectory)\$(targetFlavor)\IL\System.Private.CoreLib.dll $(workItemDirectory)\dlls\n copy $(productDirectory)\$(targetFlavor)\IL\System.Private.CoreLib.dll $(workItemDirectory)\dlls\n displayName: Create directories\n failOnStderr: true\n\n # Create baseline output on the host (x64) machine\n - task: PythonScript@0\n displayName: Create cross-platform crossgen baseline\n inputs:\n scriptSource: 'filePath'\n scriptPath: $(Build.SourcesDirectory)/src/tests/Common/scripts/crossgen2_comparison.py\n ${{ if ne(parameters.osGroup, 'windows') }}:\n pythonInterpreter: /usr/bin/python3\n arguments:\n crossgen_framework\n --crossgen $(crossgen2location)\n --dotnet $(Build.SourcesDirectory)/dotnet.sh\n --core_root $(workItemDirectory)/dlls\n --result_dir $(workItemDirectory)/log\n --target_os $(target_crossgen2_os)\n --target_arch $(archType)\n --compiler_arch_os $(target_crossgen2_os)_x64\n ${{ if eq(parameters.osGroup, 'windows') }}:\n arguments:\n crossgen_framework\n --crossgen $(crossgen2location)\n --dotnet $(Build.SourcesDirectory)\dotnet.cmd\n --core_root $(workItemDirectory)\dlls\n --result_dir $(workItemDirectory)\log\n --target_os $(target_crossgen2_os)\n --target_arch $(archType)\n --compiler_arch_os $(target_crossgen2_os)_x64\n\n - task: PublishPipelineArtifact@1\n displayName: Publish cross compiled component\n inputs:\n targetPath: $(workItemDirectory)\n artifactName: $(crossgencompare_build_artifact)\n continueOnError: true\n condition: always()\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\crossgen2-comparison-build-job.yml | crossgen2-comparison-build-job.yml | YAML | 6,709 | 0.8 | 0.064103 | 0.120567 | vue-tools | 132 | 2024-02-13T04:50:47.745707 | GPL-3.0 | false | 1935a39ba5df0c833f9c0767f5ece109 |
parameters:\n buildConfig: ''\n archType: ''\n osGroup: ''\n osSubgroup: ''\n container: ''\n helixQueues: ''\n runtimeVariant: ''\n crossBuild: false\n variables: {}\n pool: ''\n targetarch: ''\n targetos: ''\n liveLibrariesBuildConfig: ''\n\n### Crossgen-comparison job\n###\n### Ensure that the output of cross-architecture, e.g. x64-hosted-arm-targeting,\n### crossgen matches that of native, e.g. arm-hosted-arm-targeting, crossgen.\n\njobs:\n- template: /eng/pipelines/common/templates/runtimes/xplat-job.yml\n parameters:\n buildConfig: ${{ parameters.buildConfig }}\n archType: ${{ parameters.archType }}\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n runtimeVariant: ${{ parameters.runtimeVariant }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n helixType: 'test/crossgen-comparison/'\n pool: ${{ parameters.pool }}\n targetos: ${{ parameters.targetos }}\n targetarch: ${{ parameters.targetarch }}\n\n # Compute job name from template parameters\n name: ${{ format('test_crossgen2_comparison_{0}{1}_{2}_{3}_{4}_{5}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig, parameters.targetarch, parameters.targetos) }}\n displayName: ${{ format('Test crossgen2-comparison {0}{1} {2} {3} to {4} {5}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig, parameters.targetarch, parameters.targetos) }}\n\n crossBuild: ${{ parameters.crossBuild }}\n\n variables:\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - group: DotNet-HelixApi-Access\n - name: hostArchType\n value: x64\n - name: targetFlavor\n value: $(osGroup).$(archType).$(buildConfigUpper)\n - name: artifactsDirectory\n value: $(Build.SourcesDirectory)$(dir)artifacts\n - name: binDirectory\n value: $(artifactsDirectory)$(dir)bin\n - name: productDirectory\n value: $(binDirectory)$(dir)coreclr\n - name: workItemDirectory\n value: $(artifactsDirectory)$(dir)tests$(dir)coreclr$(dir)$(targetFlavor)$(dir)Tests$(dir)Core_Root\n - name: targetarch\n value: ${{ parameters.targetarch }}\n - name: compiler_arch_os\n value: ${{ format('{0}{1}_{2}', parameters.osGroup, parameters.osSubgroup, parameters.archType) }}\n - name: crossgencompare_build_artifact\n value: crossgen_comparison_build_${{ parameters.targetos }}_${{ parameters.targetarch }}\n - name: displayname_comparison_job\n value: ${{ format('Test crossgen2-comparison {0}{1} {2} {3} to {4} {5}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig, parameters.targetarch, parameters.targetos) }}\n - ${{ if eq(parameters.targetos, 'windows') }}:\n - name: target_crossgen2_os\n value: windows\n - ${{ if eq(parameters.targetos, 'linux') }}:\n - name: target_crossgen2_os\n value: linux\n - ${{ if eq(parameters.targetos, 'osx') }}:\n - name: target_crossgen2_os\n value: osx\n\n - ${{ parameters.variables }}\n\n # Test job depends on the corresponding build job\n dependsOn:\n - ${{ format('test_crossgen2_comparison_build_{0}_{1}_Release', parameters.targetos, parameters.targetarch)}}\n - build_${{ parameters.osGroup }}${{ parameters.osSubgroup }}_${{ parameters.archType }}_${{ parameters.buildConfig }}_\n\n # Run all steps in the container.\n # Note that the containers are defined in platform-matrix.yml\n container: ${{ parameters.container }}\n timeoutInMinutes: 180 # 3 hrs\n\n steps:\n\n # Download product build\n - template: /eng/pipelines/common/download-artifact-step.yml\n parameters:\n unpackFolder: $(Build.SourcesDirectory)/artifacts/bin\n artifactFileName: 'Release_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)$(archiveExtension)'\n artifactName: 'Release_CoreCLR_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)'\n displayName: 'product build'\n\n # Populate Core_Root\n - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) $(buildConfig) $(archType) $(crossArg) generatelayoutonly\n displayName: Populate Core_Root\n\n - task: DownloadPipelineArtifact@2\n displayName: Download Preprepared crossgen inputs and expected values\n inputs:\n artifact: '$(crossgencompare_build_artifact)'\n path: '$(workItemDirectory)$(dir)prebuiltWork'\n\n # Send payload to Helix where the native output is generated and compared to the baseline\n - template: /eng/common/templates/steps/send-to-helix.yml\n parameters:\n DisplayNamePrefix: Run native crossgen and compare output to baseline\n osGroup: ${{ parameters.osGroup }}\n HelixSource: $(_HelixSource)\n HelixType: 'test/crossgen-comparison/'\n ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n HelixAccessToken: $(HelixApiAccessToken)\n HelixTargetQueues: ${{ join(' ', parameters.helixQueues) }}\n ${{ if ne(variables['System.TeamProject'], 'internal') }}:\n Creator: $(Creator)\n WorkItemTimeout: 3:00 # 3 hours\n WorkItemDirectory: '$(workItemDirectory)'\n CorrelationPayloadDirectory: '$(Build.SourcesDirectory)/src/tests/Common/scripts'\n ${{ if ne(parameters.osGroup, 'windows') }}:\n WorkItemCommand:\n echo $(displayname_comparison_job) ;\n echo Targeting $(targetFlavor) ;\n chmod +x $HELIX_WORKITEM_PAYLOAD/crossgen2/crossgen2;\n mkdir -p $HELIX_WORKITEM_PAYLOAD/log;\n export CORE_ROOT=$HELIX_WORKITEM_PAYLOAD;\n python3 -u $HELIX_CORRELATION_PAYLOAD/crossgen2_comparison.py crossgen_framework\n --crossgen $HELIX_WORKITEM_PAYLOAD/crossgen2/crossgen2\n --core_root $HELIX_WORKITEM_PAYLOAD/prebuiltWork/dlls\n --result_dir $HELIX_WORKITEM_UPLOAD_ROOT\n --target_os $(target_crossgen2_os)\n --target_arch $(targetarch)\n --compiler_arch_os $(compiler_arch_os);\n python3 -u $HELIX_CORRELATION_PAYLOAD/crossgen2_comparison.py compare\n --base_dir $HELIX_WORKITEM_PAYLOAD/prebuiltWork/log\n --diff_dir $HELIX_WORKITEM_UPLOAD_ROOT\n --testresults $HELIX_WORKITEM_ROOT/testResults.xml\n --target_arch_os $(target_crossgen2_os)_$(targetarch)\n ${{ if eq(parameters.osGroup, 'windows') }}:\n WorkItemCommand:\n echo $(displayname_comparison_job) &\n echo Targeting $(targetFlavor) &\n md %HELIX_WORKITEM_PAYLOAD%\log &\n set CORE_ROOT=%HELIX_WORKITEM_PAYLOAD%&\n python -u %HELIX_CORRELATION_PAYLOAD%\crossgen2_comparison.py crossgen_framework\n --crossgen %HELIX_WORKITEM_PAYLOAD%\crossgen2\crossgen2.exe\n --core_root %HELIX_WORKITEM_PAYLOAD%\prebuiltWork\dlls\n --result_dir %HELIX_WORKITEM_UPLOAD_ROOT%\n --target_os $(target_crossgen2_os)\n --target_arch $(targetarch)\n --compiler_arch_os $(compiler_arch_os) &\n python -u %HELIX_CORRELATION_PAYLOAD%\crossgen2_comparison.py compare\n --base_dir %HELIX_WORKITEM_PAYLOAD%\prebuiltWork\log\n --diff_dir %HELIX_WORKITEM_UPLOAD_ROOT%\n --testresults %HELIX_WORKITEM_ROOT%\testResults.xml\n --target_arch_os $(target_crossgen2_os)_$(targetarch)\n # Publish log\n - task: PublishPipelineArtifact@1\n displayName: Publish log\n inputs:\n targetPath: $(Build.SourcesDirectory)/artifacts/log\n artifactName: ${{ format('Testlog_crossgen2_comparison_{0}{1}_{2}_{3}_{4}_{5}', parameters.osGroup, parameters.osSubgroup, parameters.archType, parameters.buildConfig, parameters.targetarch, parameters.targetos) }}\n continueOnError: true\n condition: always()\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\crossgen2-comparison-job.yml | crossgen2-comparison-job.yml | YAML | 7,830 | 0.8 | 0.048485 | 0.078947 | react-lib | 957 | 2024-03-25T01:38:50.870564 | MIT | false | 8038a6400cd9206ce5985ef1b4cbe555 |
parameters:\n jobTemplate: ''\n variables: {}\n osGroup: ''\n osSubgroup: ''\n archType: ''\n container: ''\n pool: ''\n platform: ''\n shouldContinueOnError: false\n jobParameters: {}\n\n# parameters.jobParameters.helixQueueGroup values:\n# 'pr' -- pull request\n# 'ci' -- continuous integration ("merge")\n# 'libraries' -- libraries tests\n# 'cet' -- machines supporting CET technology\n# 'superpmi' -- for TeamProject 'internal', a smaller set of queues (one per architecture, not several) for SuperPMI collection\n# Many of these values are unused below, as we use the same queues for many of the scenarios.\n# However, having these options allows us to easily tune the queues we use for each scenario as needed based on new hardware support.\n\njobs:\n- template: ${{ parameters.jobTemplate }}\n parameters:\n variables: ${{ parameters.variables }}\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n archType: ${{ parameters.archType }}\n container: ${{ parameters.container }}\n pool: ${{ parameters.pool }}\n platform: ${{ parameters.platform }}\n shouldContinueOnError: ${{ parameters.shouldContinueOnError }}\n helixQueues:\n\n # iOS Simulator/Mac Catalyst arm64\n - ${{ if in(parameters.platform, 'maccatalyst_arm64', 'iossimulator_arm64') }}:\n - OSX.14.Arm64.Open\n\n # iOS/tvOS Simulator x64 & MacCatalyst x64\n - ${{ if in(parameters.platform, 'iossimulator_x64', 'tvossimulator_x64', 'maccatalyst_x64') }}:\n - OSX.15.Amd64.Open\n\n # Android arm64\n - ${{ if in(parameters.platform, 'android_arm64') }}:\n - Windows.11.Amd64.Android.Open\n\n # Android x64\n - ${{ if in(parameters.platform, 'android_x64') }}:\n - Ubuntu.2204.Amd64.Android.29.Open\n\n # Browser wasm\n - ${{ if eq(parameters.platform, 'browser_wasm') }}:\n - (Ubuntu.2204.Amd64)Ubuntu.2204.Amd64.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-22.04-helix-webassembly\n\n # iOS devices\n - ${{ if in(parameters.platform, 'ios_arm64') }}:\n - OSX.13.Amd64.Iphone.Open\n\n # tvOS devices\n - ${{ if in(parameters.platform, 'tvos_arm64') }}:\n - OSX.13.Amd64.AppleTV.Open\n\n # Linux arm\n - ${{ if eq(parameters.platform, 'linux_arm') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - (Debian.12.Arm32.Open)Ubuntu.2204.ArmArch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:debian-12-helix-arm32v7\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - (Debian.12.Arm32)Ubuntu.2204.ArmArch@mcr.microsoft.com/dotnet-buildtools/prereqs:debian-12-helix-arm32v7\n\n # Linux arm64\n - ${{ if eq(parameters.platform, 'linux_arm64') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - (Ubuntu.2404.Arm64.Open)Ubuntu.2204.Armarch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-24.04-helix-arm64v8\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - (Ubuntu.2404.Arm64)Ubuntu.2204.ArmArch@mcr.microsoft.com/dotnet-buildtools/prereqs:ubuntu-24.04-helix-arm64v8\n\n # Linux musl x64\n - ${{ if eq(parameters.platform, 'linux_musl_x64') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - (Alpine.321.Amd64.Open)azurelinux.3.amd64.open@mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.21-helix-amd64\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - (Alpine.321.Amd64)azurelinux.3.amd64@mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.21-helix-amd64\n\n # Linux musl arm32\n - ${{ if eq(parameters.platform, 'linux_musl_arm') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - (Alpine.321.Arm32.Open)Ubuntu.2204.ArmArch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.21-helix-arm32v7\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - (Alpine.321.Arm32)Ubuntu.2204.ArmArch@mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.21-helix-arm32v7\n\n # Linux musl arm64\n - ${{ if eq(parameters.platform, 'linux_musl_arm64') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - (Alpine.321.Arm64.Open)Ubuntu.2204.ArmArch.Open@mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.21-helix-arm64v8\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - (Alpine.321.Arm64)Ubuntu.2204.ArmArch@mcr.microsoft.com/dotnet-buildtools/prereqs:alpine-3.21-helix-arm64v8\n\n # Linux x64\n - ${{ if eq(parameters.platform, 'linux_x64') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - Ubuntu.2204.Amd64.Open\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - Ubuntu.2204.Amd64\n\n # OSX arm64\n - ${{ if eq(parameters.platform, 'osx_arm64') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - osx.13.arm64.open\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - OSX.1200.ARM64\n\n # OSX x64\n - ${{ if eq(parameters.platform, 'osx_x64') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - OSX.1200.Amd64.Open\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - OSX.1200.Amd64\n\n # windows x64\n - ${{ if eq(parameters.platform, 'windows_x64') }}:\n - ${{ if and(eq(variables['System.TeamProject'], 'public'), ne(parameters.jobParameters.helixQueueGroup, 'cet')) }}:\n - Windows.10.Amd64.Open\n - ${{ if and(eq(variables['System.TeamProject'], 'public'), eq(parameters.jobParameters.helixQueueGroup, 'cet')) }}:\n - Windows.11.Amd64.Cet.Open\n - ${{ if and(eq(variables['System.TeamProject'], 'internal'), in(parameters.jobParameters.helixQueueGroup, 'superpmi')) }}:\n - Windows.10.Amd64.X86.Rt\n - ${{ if and(eq(variables['System.TeamProject'], 'internal'), notIn(parameters.jobParameters.helixQueueGroup, 'superpmi')) }}:\n - Windows.10.Amd64\n\n # windows x86\n - ${{ if eq(parameters.platform, 'windows_x86') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - Windows.10.Amd64.Open\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - Windows.10.Amd64.X86.Rt\n\n # windows arm64\n - ${{ if eq(parameters.platform, 'windows_arm64') }}:\n - ${{ if eq(variables['System.TeamProject'], 'public') }}:\n - Windows.11.Arm64.Open\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n - Windows.11.Arm64\n\n ${{ insert }}: ${{ parameters.jobParameters }}\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\helix-queues-setup.yml | helix-queues-setup.yml | YAML | 6,507 | 0.8 | 0.319444 | 0.211382 | python-kit | 646 | 2024-04-24T02:28:20.982574 | Apache-2.0 | false | 927ff8b6a8e194bad264857b45854e10 |
parameters:\n isOfficialBuild: false\n certNames: []\n vaultName: ''\n azureSubscription: ''\n scriptRoot: '$(Build.SourcesDirectory)'\n\nsteps:\n- ${{ if and(eq(parameters.isOfficialBuild, true), ne(variables['Build.Reason'], 'PullRequest'), or(startswith(variables['Build.SourceBranch'], 'refs/heads/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/internal/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/reltest/')), not(endsWith(variables['Build.SourceBranch'], '-staging'))) }}:\n - task: AzureKeyVault@2\n inputs:\n azureSubscription: ${{ parameters.azureSubscription }}\n KeyVaultName: ${{ parameters.vaultName }}\n SecretsFilter: ${{ join(',', parameters.certNames) }}\n displayName: 'Download secrets: Diagnostic Certificates'\n\n - task: NuGetCommand@2\n displayName: Install ESRPClient Tool\n inputs:\n command: 'custom'\n arguments: 'install microsoft.esrpclient\n -Source https://dnceng.pkgs.visualstudio.com/_packaging/MicroBuildToolset/nuget/v3/index.json\n -DependencyVersion Highest -OutputDirectory $(Build.StagingDirectory)'\n\n - powershell: |\n eng/pipelines/install-diagnostic-certs.ps1 "${{ join(',', parameters.certNames) }}"\n $esrpclient = Get-ChildItem -Path '$(Build.StagingDirectory)\microsoft.esrpclient*' -Filter esrpclient.exe -Recurse | Select-Object -First 1 | select -ExpandProperty FullName\n\n if ($esrpclient -eq $null) {\n throw "Failed to find esrpclient.exe in $(Build.StagingDirectory)"\n }\n\n $signArgs = "/p:DotNetEsrpToolPath=$esrpclient"\n echo "##vso[task.setvariable variable=_SignDiagnosticFilesArgs;]$signArgs"\n displayName: 'Install diagnostic certificates'\n workingDirectory: ${{ parameters.scriptRoot }}\n env:\n ${{ each cert in parameters.certNames }}:\n ${{ cert }}: $(${{ cert }})\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\install-diagnostic-certs.yml | install-diagnostic-certs.yml | YAML | 1,876 | 0.8 | 0.051282 | 0 | vue-tools | 798 | 2025-04-20T06:07:29.338545 | GPL-3.0 | false | 003dd113d603aea253ae4c6410eac206 |
parameters:\n osGroup: '' # required -- operating system for the job\n osSubgroup: '' # optional -- operating system subgroup\n archType: '' # required -- targeting CPU architecture\n buildConfig: '' # required -- build configuration\n helixQueues: '' # required -- Helix queues\n toolName: '' # required -- which tool to use: Antigen or Fuzzlyn?\n\nsteps:\n- script: $(PythonSetupScript)\n displayName: Enable python venv\n\n- script: $(PythonScript) $(Build.SourcesDirectory)/src/coreclr/scripts/fuzzer_setup.py -tool_name $(toolName) -source_directory $(Build.SourcesDirectory) -core_root_directory $(Core_Root_Dir) -arch $(archType) -platform $(osGroup)\n displayName: ${{ format('{0} setup ({1}-{2})', parameters.toolName, parameters.osGroup, parameters.archType) }}\n\n # Run exploratory tool in helix\n- template: /eng/pipelines/common/templates/runtimes/send-to-helix-step.yml\n parameters:\n displayName: 'Send job to Helix'\n helixBuild: $(Build.BuildNumber)\n helixSource: $(_HelixSource)\n helixType: 'build/tests/'\n helixQueues: ${{ join(',', parameters.helixQueues) }}\n creator: dotnet-bot\n WorkItemTimeout: 2:30 # 2.5 hours\n WorkItemDirectory: '$(WorkItemDirectory)'\n CorrelationPayloadDirectory: '$(CorrelationPayloadDirectory)'\n helixProjectArguments: '$(Build.SourcesDirectory)/src/coreclr/scripts/exploratory.proj'\n BuildConfig: ${{ parameters.buildConfig }}\n osGroup: ${{ parameters.osGroup }}\n RunConfiguration: '$(RunConfiguration)'\n ToolName: ${{ parameters.toolName }}\n RunReason: '$(RunReason)'\n\n# Always upload the available issues-summary.txt files\n- task: CopyFiles@2\n displayName: Copying issues-summary.txt of all partitions\n inputs:\n sourceFolder: '$(HelixResults)'\n contents: '**/issues-summary-*.txt'\n targetFolder: '$(IssuesLocation)'\n continueOnError: true\n condition: always()\n\n# Always upload the available AllIssues-*.zip files to be used for summarization\n- task: CopyFiles@2\n displayName: Copying AllIssues.zip of all partitions\n inputs:\n sourceFolder: '$(HelixResults)'\n contents: '**/AllIssues-*.zip'\n targetFolder: '$(IssuesLocation)'\n continueOnError: true\n condition: always()\n\n- task: PublishPipelineArtifact@1\n displayName: Publish issue files\n inputs:\n targetPath: $(IssuesLocation)\n artifactName: 'Issues_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)'\n continueOnError: true\n condition: always()\n\n# Always upload the available log files\n- task: CopyFiles@2\n displayName: Copying fuzzer logs of all partitions\n inputs:\n sourceFolder: '$(HelixResults)'\n contents: '**/*.log'\n targetFolder: '$(FuzzerLogsLocation)'\n continueOnError: true\n condition: always()\n\n- task: PublishPipelineArtifact@1\n displayName: Publish fuzzer log files\n inputs:\n targetPath: '$(FuzzerLogsLocation)'\n artifactName: '$(toolName)_Logs_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)'\n continueOnError: true\n condition: always()\n\n- script: $(PythonScript) $(Build.SourcesDirectory)/src/coreclr/scripts/$(SummarizeScript) -issues_directory $(IssuesLocation) -arch $(archType) -platform $(osGroup)$(osSubgroup) -build_config $(_BuildConfig)\n displayName: ${{ format('Summarize ({0}{1} {2})', parameters.osGroup, parameters.osSubgroup, parameters.archType) }}\n condition: always()\n\n- task: PublishPipelineArtifact@1\n displayName: ${{ format('Publish {0} build logs', parameters.toolName) }}\n inputs:\n targetPath: $(Build.SourcesDirectory)/artifacts/log\n artifactName: '$(toolName)_BuildLogs_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)'\n condition: always()\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\jit-exploratory-steps.yml | jit-exploratory-steps.yml | YAML | 3,705 | 0.95 | 0.022222 | 0.05 | vue-tools | 324 | 2024-08-13T05:34:44.535312 | Apache-2.0 | false | 19ca06cbc47511795246940896f64910 |
parameters:\n osGroup: '' # required -- operating system for the job\n osSubgroup: '' # optional -- operating system subgroup\n archType: '' # required -- targeting CPU architecture\n buildConfig: '' # required -- build configuration\n toolName: '' # required -- which tool to use: Antigen or Fuzzlyn?\n\nvariables:\n- template: /eng/pipelines/coreclr/templates/jit-python-variables.yml\n parameters:\n osGroup: ${{ parameters.osGroup }}\n\n- ${{ if in(variables['Build.Reason'], 'Schedule') }}:\n - name: RunReason\n value: 'Scheduled'\n- ${{ if notin(variables['Build.Reason'], 'Schedule') }}:\n - name: RunReason\n value: 'PR'\n- ${{ if eq(parameters.osGroup, 'windows') }}:\n - name: Core_Root_Dir\n value: '$(Build.SourcesDirectory)\artifacts\tests\coreclr\${{ parameters.osGroup }}.${{ parameters.archType }}.${{ parameters.buildConfig }}\Tests\Core_Root'\n - name: HelixResults\n value: '$(Build.SourcesDirectory)\artifacts\helixresults\'\n - name: IssuesLocation\n value: '$(Build.SourcesDirectory)\artifacts\issues\'\n - name: AntigenLogsLocation\n value: '$(Build.SourcesDirectory)\artifacts\antigen_logs\'\n - name: FuzzlynLogsLocation\n value: '$(Build.SourcesDirectory)\artifacts\fuzzlyn_logs\'\n\n- ${{ if ne(parameters.osGroup, 'windows') }}:\n - name: Core_Root_Dir\n value: '$(Build.SourcesDirectory)/artifacts/tests/coreclr/${{ parameters.osGroup }}.${{ parameters.archType }}.$(buildConfigUpper)/Tests/Core_Root'\n - name: HelixResults\n value: '$(Build.SourcesDirectory)/artifacts/helixresults/'\n - name: IssuesLocation\n value: '$(Build.SourcesDirectory)/artifacts/issues/'\n - name: AntigenLogsLocation\n value: '$(Build.SourcesDirectory)/artifacts/antigen_logs/'\n - name: FuzzlynLogsLocation\n value: '$(Build.SourcesDirectory)/artifacts/fuzzlyn_logs/'\n\n- ${{ if eq(parameters.toolName, 'Antigen') }}:\n - name: SummarizeScript\n value: 'antigen_summarize.py'\n - name: FuzzerLogsLocation\n value: '$(AntigenLogsLocation)'\n\n- ${{ if eq(parameters.toolName, 'Fuzzlyn') }}:\n - name: SummarizeScript\n value: 'fuzzlyn_summarize.py'\n - name: FuzzerLogsLocation\n value: '$(FuzzlynLogsLocation)'\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\jit-exploratory-variables.yml | jit-exploratory-variables.yml | YAML | 2,234 | 0.95 | 0.132075 | 0 | python-kit | 397 | 2024-09-22T12:00:42.225835 | Apache-2.0 | false | 0ab7c46e95327195a7d122b983e0371b |
parameters:\n - name: platforms\n type: object\n - name: testGroup\n type: string\n default: outerloop\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms: ${{ parameters.platforms }}\n jobParameters:\n buildArgs: -s clr+libs -c $(_BuildConfig) -lc Release\n postBuildSteps:\n - template: /eng/pipelines/coreclr/templates/build-native-test-assets-step.yml\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin\n includeRootFolder: false\n archiveType: $(archiveType)\n archiveExtension: $(archiveExtension)\n tarCompression: $(tarCompression)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n extraVariablesTemplates:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n testGroup: ${{ parameters.testGroup }}\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/build-test-job.yml\n buildConfig: checked\n platforms:\n - CoreClrTestBuildHost # Either osx_x64 or linux_x64\n jobParameters:\n testGroup: ${{ parameters.testGroup }}\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/templates/runtimes/run-test-job.yml\n buildConfig: checked\n platforms: ${{ parameters.platforms }}\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n testGroup: ${{ parameters.testGroup }}\n liveLibrariesBuildConfig: Release\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\jit-outerloop-pipeline.yml | jit-outerloop-pipeline.yml | YAML | 2,358 | 0.8 | 0 | 0 | react-lib | 318 | 2023-08-26T09:34:26.801578 | Apache-2.0 | false | 7f727031e910b7937ab8938ce0fb60f4 |
parameters:\n osGroup: ''\n\nvariables:\n- ${{ if eq(parameters.osGroup, 'windows') }}:\n - name: PythonSetupScript\n value: 'py -3 -m venv $(Build.SourcesDirectory)\venv'\n - name: PythonScript\n value: '$(Build.SourcesDirectory)\venv\Scripts\python.exe'\n - name: PipScript\n value: '$(Build.SourcesDirectory)\venv\Scripts\python.exe -m pip'\n- ${{ if ne(parameters.osGroup, 'windows') }}:\n - name: PythonSetupScript\n value: 'python3 -m venv $(Build.SourcesDirectory)/venv'\n - name: PythonScript\n value: '$(Build.SourcesDirectory)/venv/bin/python3'\n - name: PipScript\n value: '$(Build.SourcesDirectory)/venv/bin/pip3'\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\jit-python-variables.yml | jit-python-variables.yml | YAML | 634 | 0.7 | 0.111111 | 0 | node-utils | 427 | 2024-04-10T11:11:54.912051 | BSD-3-Clause | false | 8bf026079365c56f8fd5c591975f04ee |
parameters:\n - name: platforms\n type: object\n - name: replayType\n type: string\n default: standard\n\nextends:\n template: /eng/pipelines/common/templates/pipeline-with-resources.yml\n parameters:\n stages:\n # Don't run if the JIT-EE GUID has changed,\n # since there won't be any SuperPMI collections with the new GUID until the collection\n # pipeline completes after this PR is merged.\n - ${{ if eq(variables['Build.Reason'], 'PullRequest') }}:\n - stage: EvaluatePaths\n displayName: Evaluate Paths\n jobs:\n - template: /eng/pipelines/common/evaluate-paths-job.yml\n parameters:\n paths:\n - subset: jiteeversionguid\n include:\n - src/coreclr/inc/jiteeversionguid.h\n\n - stage: Build\n jobs:\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/common/global-build-job.yml\n buildConfig: checked\n platforms: ${{ parameters.platforms }}\n jobParameters:\n buildArgs: -s clr.alljits+clr.spmi -c $(_BuildConfig)\n postBuildSteps:\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(Build.SourcesDirectory)/artifacts/bin/coreclr\n includeRootFolder: false\n archiveType: $(archiveType)\n tarCompression: $(tarCompression)\n archiveExtension: $(archiveExtension)\n artifactName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n displayName: Build Assets\n condition: not(eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_jiteeversionguid.containsChange'], true))\n\n - template: /eng/pipelines/common/platform-matrix.yml\n parameters:\n jobTemplate: /eng/pipelines/coreclr/templates/superpmi-replay-job.yml\n buildConfig: checked\n platforms: ${{ parameters.platforms }}\n helixQueueGroup: ci\n helixQueuesTemplate: /eng/pipelines/coreclr/templates/helix-queues-setup.yml\n jobParameters:\n condition: not(eq(stageDependencies.EvaluatePaths.evaluate_paths.outputs['SetPathVars_jiteeversionguid.containsChange'], true))\n replayType: ${{ parameters.replayType }}\n unifiedArtifactsName: BuildArtifacts_$(osGroup)$(osSubgroup)_$(archType)_$(_BuildConfig)\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\jit-replay-pipeline.yml | jit-replay-pipeline.yml | YAML | 2,481 | 0.8 | 0.034483 | 0.055556 | python-kit | 961 | 2024-01-18T16:23:19.357152 | Apache-2.0 | false | 7eb44da6fbe5695699fe32c39611af04 |
parameters:\n isOfficialBuild: false\n scriptRoot: '$(Build.SourcesDirectory)'\n\nsteps:\n- ${{ if and(eq(parameters.isOfficialBuild, true), ne(variables['Build.Reason'], 'PullRequest'), or(startswith(variables['Build.SourceBranch'], 'refs/heads/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/internal/release/'), startswith(variables['Build.SourceBranch'], 'refs/heads/reltest/')), not(endsWith(variables['Build.SourceBranch'], '-staging'))) }}:\n - powershell: |\n eng/pipelines/remove-diagnostic-certs.ps1 "$(DacCertificateThumbprints)"\n workingDirectory: ${{ parameters.scriptRoot }}\n displayName: 'Remove Diagnostic Certificates'\n condition: always()\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\remove-diagnostic-certs.yml | remove-diagnostic-certs.yml | YAML | 687 | 0.7 | 0.090909 | 0 | python-kit | 19 | 2023-09-05T02:51:31.432147 | GPL-3.0 | false | 8d83bd12804d281d61e8fbb3dc3c8992 |
parameters:\n steps: [] # optional -- any additional steps that need to happen before pulling down the jitutils repo and sending the jitutils to helix (ie building your repo)\n variables: [] # optional -- list of additional variables to send to the template\n jobName: '' # required -- job name\n displayName: '' # optional -- display name for the job. Will use jobName if not passed\n pool: '' # required -- name of the Build pool\n container: '' # required -- name of the container\n buildConfig: '' # required -- build configuration\n archType: '' # required -- targeting CPU architecture\n osGroup: '' # required -- operating system for the job\n osSubgroup: '' # optional -- operating system subgroup\n crossBuild: '' # optional -- 'true' if this is a cross-build\n continueOnError: 'false' # optional -- determines whether to continue the build if the step errors\n dependsOn: '' # optional -- dependencies of the job\n timeoutInMinutes: 320 # optional -- timeout for the job\n enableTelemetry: false # optional -- enable for telemetry\n liveLibrariesBuildConfig: '' # optional -- live-live libraries configuration to use for the run\n helixQueues: '' # required -- Helix queues\n\njobs:\n- template: /eng/pipelines/common/templates/runtimes/xplat-job.yml\n parameters:\n dependsOn: ${{ parameters.dependsOn }}\n buildConfig: ${{ parameters.buildConfig }}\n archType: ${{ parameters.archType }}\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n crossBuild: ${{ parameters.crossBuild }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n enableTelemetry: ${{ parameters.enableTelemetry }}\n enablePublishBuildArtifacts: true\n continueOnError: ${{ parameters.continueOnError }}\n timeoutInMinutes: ${{ parameters.timeoutInMinutes }}\n\n ${{ if ne(parameters.displayName, '') }}:\n displayName: '${{ parameters.displayName }}'\n ${{ if eq(parameters.displayName, '') }}:\n displayName: '${{ parameters.jobName }}'\n\n variables:\n - template: /eng/pipelines/coreclr/templates/jit-python-variables.yml\n parameters:\n osGroup: ${{ parameters.osGroup }}\n\n - name: SpmiCollectionLocation\n value: '$(Build.SourcesDirectory)\artifacts\spmi\'\n - name: SpmiLogsLocation\n value: '$(Build.SourcesDirectory)\artifacts\spmi_logs\'\n - name: HelixResultLocation\n value: '$(Build.SourcesDirectory)\artifacts\helixresults\'\n\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n runtimeFlavor: coreclr\n testGroup: ${{ parameters.testGroup }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n\n - ${{ each variable in parameters.variables }}:\n - ${{insert}}: ${{ variable }}\n\n workspace:\n clean: all\n pool:\n ${{ parameters.pool }}\n container: ${{ parameters.container }}\n steps:\n - ${{ parameters.steps }}\n\n - script: |\n mkdir -p $(SpmiCollectionLocation)\n displayName: Create directory for SPMI collection\n\n - script: $(PythonSetupScript)\n displayName: Enable python venv\n\n - script: $(PythonScript) $(Build.SourcesDirectory)/src/coreclr/scripts/superpmi_asmdiffs_checked_release_setup.py -source_directory $(Build.SourcesDirectory) -checked_directory $(buildProductRootFolderPath) -release_directory $(releaseProductRootFolderPath) -arch $(archType)\n displayName: ${{ format('SuperPMI asmdiffs checked release setup ({0} {1})', parameters.osGroup, parameters.archType) }}\n\n # Run superpmi asmdiffs between checked build and release build in helix\n - template: /eng/pipelines/common/templates/runtimes/send-to-helix-step.yml\n parameters:\n displayName: 'Send job to Helix'\n helixBuild: $(Build.BuildNumber)\n helixSource: $(_HelixSource)\n helixType: 'build/tests/'\n helixQueues: ${{ join(',', parameters.helixQueues) }}\n creator: dotnet-bot\n WorkItemTimeout: 4:00 # 4 hours\n WorkItemDirectory: '$(WorkItemDirectory)'\n CorrelationPayloadDirectory: '$(CorrelationPayloadDirectory)'\n helixProjectArguments: '$(Build.SourcesDirectory)/src/coreclr/scripts/superpmi-asmdiffs-checked-release.proj'\n BuildConfig: ${{ parameters.buildConfig }}\n osGroup: ${{ parameters.osGroup }}\n archType: ${{ parameters.archType }}\n\n # Always upload the available logs for diagnostics\n - task: CopyFiles@2\n displayName: Copying superpmi.log of all partitions\n inputs:\n sourceFolder: '$(HelixResultLocation)'\n contents: '**/superpmi_*.log'\n targetFolder: '$(SpmiLogsLocation)'\n condition: always()\n\n - task: PublishPipelineArtifact@1\n displayName: Publish SuperPMI logs\n inputs:\n targetPath: $(SpmiLogsLocation)\n artifactName: 'SuperPMI_Logs_$(archType)_$(buildConfig)_Attempt$(System.JobAttempt)'\n condition: always()\n continueOnError: true\n\n - task: PublishPipelineArtifact@1\n displayName: Publish SuperPMI build logs\n inputs:\n targetPath: $(Build.SourcesDirectory)/artifacts/log\n artifactName: 'SuperPMI_BuildLogs_$(archType)_$(buildConfig)_Attempt$(System.JobAttempt)'\n condition: always()\n continueOnError: true\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\run-superpmi-asmdiffs-checked-release-job.yml | run-superpmi-asmdiffs-checked-release-job.yml | YAML | 5,552 | 0.95 | 0.10084 | 0.019048 | vue-tools | 99 | 2024-11-03T16:55:27.720428 | Apache-2.0 | false | e441b85a902bd36b9c2ce34cac9f5ff8 |
parameters:\n steps: [] # optional -- any additional steps that need to happen before pulling down the jitutils repo and sending the jitutils to helix (ie building your repo)\n variables: [] # optional -- list of additional variables to send to the template\n jobName: '' # required -- job name\n displayName: '' # optional -- display name for the job. Will use jobName if not passed\n pool: '' # required -- name of the Build pool\n container: '' # required -- name of the container\n buildConfig: '' # required -- build configuration\n archType: '' # required -- targeting CPU architecture\n osGroup: '' # required -- operating system for the job\n osSubgroup: '' # optional -- operating system subgroup\n crossBuild: '' # optional -- 'true' if this is a cross-build\n continueOnError: 'false' # optional -- determines whether to continue the build if the step errors\n dependsOn: '' # optional -- dependencies of the job\n timeoutInMinutes: 320 # optional -- timeout for the job\n enableTelemetry: false # optional -- enable for telemetry\n liveLibrariesBuildConfig: '' # optional -- live-live libraries configuration to use for the run\n collectionType: ''\n collectionName: ''\n\njobs:\n- template: /eng/pipelines/common/templates/runtimes/xplat-job.yml\n parameters:\n dependsOn: ${{ parameters.dependsOn }}\n buildConfig: ${{ parameters.buildConfig }}\n archType: ${{ parameters.archType }}\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n container: ${{ parameters.container }}\n crossBuild: ${{ parameters.crossBuild }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n enableTelemetry: ${{ parameters.enableTelemetry }}\n enablePublishBuildArtifacts: true\n continueOnError: ${{ parameters.continueOnError }}\n collectionType: $ {{ parameters.collectionType }}\n collectionName: ${{ parameters.collectionName }}\n\n ${{ if ne(parameters.displayName, '') }}:\n displayName: '${{ parameters.displayName }}'\n ${{ if eq(parameters.displayName, '') }}:\n displayName: '${{ parameters.jobName }}'\n\n # tests collection takes longer so increase timeout to 8 hours\n ${{ if or(eq(parameters.collectionName, 'coreclr_tests'), eq(parameters.collectionName, 'libraries_tests')) }}:\n timeoutInMinutes: 480\n ${{ else }}:\n timeoutInMinutes: ${{ parameters.timeoutInMinutes }}\n\n variables:\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n runtimeFlavor: coreclr\n testGroup: ${{ parameters.testGroup }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n\n - ${{ each variable in parameters.variables }}:\n - ${{insert}}: ${{ variable }}\n - HelixApiAccessToken: ''\n - HelixPreCommand: ''\n - MchFileTag: '${{ parameters.osGroup }}.${{ parameters.archType }}.${{ parameters.buildConfig }}'\n - CollectionType: ${{ parameters.collectionType }}\n - CollectionName: ${{ parameters.collectionName }}\n\n - template: /eng/pipelines/coreclr/templates/jit-python-variables.yml\n parameters:\n osGroup: ${{ parameters.osGroup }}\n\n - ${{ if eq(parameters.osGroup, 'windows') }}:\n - name: Core_Root_Dir\n value: '$(Build.SourcesDirectory)\artifacts\tests\coreclr\${{ parameters.osGroup }}.${{ parameters.archType }}.${{ parameters.buildConfig }}\Tests\Core_Root'\n - name: MchFilesLocation\n value: '$(Build.SourcesDirectory)\artifacts\helixresults\'\n - name: MergedMchFileLocation\n value: '$(Build.SourcesDirectory)\artifacts\spmi_collection\'\n - name: SpmiLogsLocation\n value: '$(Build.SourcesDirectory)\artifacts\spmi_logs\'\n - name: PayloadLocation\n value: '$(Build.SourcesDirectory)\payload'\n - ${{ if ne(parameters.osGroup, 'windows') }}:\n - name: Core_Root_Dir\n value: '$(Build.SourcesDirectory)/artifacts/tests/coreclr/${{ parameters.osGroup }}.${{ parameters.archType }}.$(buildConfigUpper)/Tests/Core_Root'\n - name: MchFilesLocation\n value: '$(Build.SourcesDirectory)/artifacts/helixresults/'\n - name: MergedMchFileLocation\n value: '$(Build.SourcesDirectory)/artifacts/spmi_collection/'\n - name: SpmiLogsLocation\n value: '$(Build.SourcesDirectory)/artifacts/spmi_logs/'\n - name: PayloadLocation\n value: '$(Build.SourcesDirectory)/payload'\n\n - ${{ if eq(parameters.collectionName, 'libraries') }}:\n - name: InputDirectory\n value: '$(Core_Root_Dir)'\n - ${{ if eq(parameters.collectionName, 'benchmarks') }}:\n - name: InputDirectory\n value: '$(Core_Root_Dir)'\n - ${{ if eq(parameters.collectionName, 'realworld') }}:\n - name: InputDirectory\n value: '$(Core_Root_Dir)'\n - ${{ if eq(parameters.collectionName, 'coreclr_tests') }}:\n - name: InputDirectory\n value: '$(managedTestArtifactRootFolderPath)'\n - ${{ if eq(parameters.collectionName, 'libraries_tests') }}:\n - name: InputDirectory\n value: '$(Build.SourcesDirectory)/artifacts/tests/libraries/$(osGroup).$(archType).$(buildConfigUpper)'\n - ${{ if eq(parameters.collectionName, 'smoke_tests') }}:\n - name: InputDirectory\n value: '$(Build.SourcesDirectory)/artifacts/tests/coreclr/obj/${{ parameters.osGroup }}.${{ parameters.archType }}.$(buildConfigUpper)/Managed/nativeaot/SmokeTests'\n\n - name: PublicQueuesCLIArg\n ${{ if ne(variables['System.TeamProject'], 'internal') }}:\n value: '-public_queues'\n ${{ else }}:\n value: ''\n\n workspace:\n clean: all\n pool:\n ${{ parameters.pool }}\n steps:\n - ${{ parameters.steps }}\n\n - script: $(PythonSetupScript)\n displayName: Enable python venv\n condition: always()\n\n - script: $(PythonScript) $(Build.SourcesDirectory)/src/coreclr/scripts/superpmi_collect_setup.py -payload_directory $(PayloadLocation) -source_directory $(Build.SourcesDirectory) -core_root_directory $(Core_Root_Dir) -arch $(archType) -platform $(osGroup) -mch_file_tag $(MchFileTag) -input_directory $(InputDirectory) -collection_name $(CollectionName) -collection_type $(CollectionType) $(PublicQueuesCLIArg) -max_size 25 # size in MB\n displayName: ${{ format('SuperPMI setup ({0})', parameters.osGroup) }}\n\n # Create required directories for merged mch collection and superpmi logs\n - ${{ if ne(parameters.osGroup, 'windows') }}:\n - script: |\n mkdir -p $(MergedMchFileLocation)\n mkdir -p $(SpmiLogsLocation)\n displayName: Create directories\n - ${{ if eq(parameters.osGroup, 'windows') }}:\n - script: |\n mkdir $(MergedMchFileLocation)\n mkdir $(SpmiLogsLocation)\n displayName: Create directories\n\n # Run superpmi collection in helix\n - template: /eng/pipelines/coreclr/templates/superpmi-send-to-helix.yml\n parameters:\n HelixSource: '$(HelixSourcePrefix)/$(Build.Repository.Name)/$(Build.SourceBranch)' # sources must start with pr/, official/, prodcon/, or agent/\n HelixType: 'test/superpmi/$(CollectionName)/$(CollectionType)/$(Architecture)'\n HelixAccessToken: $(HelixApiAccessToken)\n HelixTargetQueues: $(Queue)\n HelixPreCommands: $(HelixPreCommand)\n\n ${{ if ne(variables['System.TeamProject'], 'internal') }}:\n Creator: $(Build.DefinitionName)\n\n WorkItemTimeout: 4:00 # 4 hours\n WorkItemDirectory: '$(WorkItemDirectory)'\n CorrelationPayloadDirectory: '$(CorrelationPayloadDirectory)'\n ProjectFile: 'superpmi-collect.proj'\n BuildConfig: ${{ parameters.buildConfig }}\n osGroup: ${{ parameters.osGroup }}\n archType: ${{ parameters.archType }}\n InputArtifacts: '$(InputArtifacts)'\n CollectionType: '$(CollectionType)'\n CollectionName: '$(CollectionName)'\n continueOnError: true # Run the future step i.e. merge-mch step even if this step fails.\n\n # Always run merge step even if collection of some partition fails so we can store collection\n # of the partitions that succeeded. If all the partitions fail, merge-mch would fail and we won't\n # run future steps like uploading superpmi collection.\n - script: $(PythonScript) $(Build.SourcesDirectory)/src/coreclr/scripts/superpmi.py merge-mch --ci -log_level DEBUG -pattern $(MchFilesLocation)$(CollectionName).$(CollectionType)*.mch -output_mch_path $(MergedMchFileLocation)$(CollectionName).$(CollectionType).$(MchFileTag).mch\n displayName: ${{ format('Merge {0}-{1} SuperPMI collections', parameters.collectionName, parameters.collectionType) }}\n condition: always()\n\n # If merge step above fails, then skip "Upload as artifact" and "Upload to Azure storage"\n - template: /eng/pipelines/common/upload-artifact-step.yml\n parameters:\n rootFolder: $(MergedMchFileLocation)\n includeRootFolder: false\n archiveType: $(archiveType)\n tarCompression: $(tarCompression)\n archiveExtension: $(archiveExtension)\n artifactName: 'SuperPMI_Collection_$(CollectionName)_$(CollectionType)_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)'\n displayName: ${{ format('Upload artifacts SuperPMI {0}-{1} collection', parameters.collectionName, parameters.collectionType) }}\n\n - ${{ if eq(variables['System.TeamProject'], 'internal') }}:\n # Add authenticated pip feed\n - task: PipAuthenticate@1\n displayName: 'Pip Authenticate'\n inputs:\n artifactFeeds: public/dotnet-public-pypi\n onlyAddExtraIndex: false\n\n # Ensure the Python azure-storage-blob package is installed before doing the upload.\n - script: $(PipScript) install --upgrade pip && $(PipScript) install azure.storage.blob==12.5.0 --force-reinstall && $(PipScript) install azure.identity==1.16.1 --force-reinstall\n displayName: Upgrade Pip to latest and install azure-storage-blob and azure-identity Python packages\n\n - task: AzureCLI@2\n displayName: ${{ format('Upload SuperPMI {0}-{1} collection to Azure Storage', parameters.collectionName, parameters.collectionType) }}\n inputs:\n azureSubscription: 'superpmi-collect-rw'\n scriptType: 'pscore'\n scriptLocation: 'inlineScript'\n inlineScript: |\n $(PythonScript) $(Build.SourcesDirectory)/src/coreclr/scripts/superpmi.py upload -log_level DEBUG -arch $(archType) -build_type $(buildConfig) -mch_files $(MergedMchFileLocation)$(CollectionName).$(CollectionType).$(MchFileTag).mch -core_root $(Build.SourcesDirectory)/artifacts/bin/coreclr/$(osGroup).x64.$(buildConfigUpper)\n\n # Always upload the available logs for diagnostics\n - task: CopyFiles@2\n displayName: Copying superpmi.log of all partitions\n inputs:\n sourceFolder: '$(MchFilesLocation)'\n contents: '**/$(CollectionName).$(CollectionType)*.log'\n targetFolder: '$(SpmiLogsLocation)'\n condition: always()\n\n - task: PublishPipelineArtifact@1\n displayName: Publish SuperPMI logs\n inputs:\n targetPath: $(SpmiLogsLocation)\n artifactName: 'SuperPMI_Logs_$(CollectionName)_$(CollectionType)_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)_Attempt$(System.JobAttempt)'\n condition: always()\n continueOnError: true\n\n - task: PublishPipelineArtifact@1\n displayName: Publish SuperPMI build logs\n inputs:\n targetPath: $(Build.SourcesDirectory)/artifacts/log\n artifactName: 'SuperPMI_BuildLogs_$(CollectionName)_$(CollectionType)_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)_Attempt$(System.JobAttempt)'\n condition: always()\n continueOnError: true\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\run-superpmi-collect-job.yml | run-superpmi-collect-job.yml | YAML | 11,903 | 0.95 | 0.122807 | 0.04902 | vue-tools | 600 | 2024-04-19T13:01:24.508152 | BSD-3-Clause | false | 700723f8536e1888fc83fb60e3930e3f |
parameters:\n steps: [] # optional -- any additional steps that need to happen before pulling down the jitutils repo and sending the jitutils to helix (ie building your repo)\n variables: [] # optional -- list of additional variables to send to the template\n jobName: '' # required -- job name\n displayName: '' # optional -- display name for the job. Will use jobName if not passed\n pool: '' # required -- name of the Build pool\n container: '' # required -- name of the container\n buildConfig: '' # required -- build configuration\n archType: '' # required -- targeting CPU architecture\n osGroup: '' # required -- operating system for the job\n osSubgroup: '' # optional -- operating system subgroup\n crossBuild: '' # optional -- 'true' if this is a cross-build\n continueOnError: 'false' # optional -- determines whether to continue the build if the step errors\n dependsOn: '' # optional -- dependencies of the job\n timeoutInMinutes: 180 # optional -- timeout for the job\n enableTelemetry: false # optional -- enable for telemetry\n liveLibrariesBuildConfig: '' # optional -- live-live libraries configuration to use for the run\n helixQueues: '' # required -- Helix queues\n diffType: 'asmdiffs' # required -- 'asmdiffs', 'tpdiff', or 'all'\n baseJitOptions: '' # e.g. JitStressModeNames=STRESS_PHYSICAL_PROMOTION;JitFullyInt=1\n diffJitOptions: ''\n\njobs:\n- template: /eng/pipelines/common/templates/runtimes/xplat-job.yml\n parameters:\n dependsOn: ${{ parameters.dependsOn }}\n buildConfig: ${{ parameters.buildConfig }}\n archType: ${{ parameters.archType }}\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n crossBuild: ${{ parameters.crossBuild }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n enableTelemetry: ${{ parameters.enableTelemetry }}\n enablePublishBuildArtifacts: true\n continueOnError: ${{ parameters.continueOnError }}\n timeoutInMinutes: ${{ parameters.timeoutInMinutes }}\n\n ${{ if ne(parameters.displayName, '') }}:\n displayName: '${{ parameters.displayName }}'\n ${{ if eq(parameters.displayName, '') }}:\n displayName: '${{ parameters.jobName }}'\n\n variables:\n - ${{ each variable in parameters.variables }}:\n - ${{insert}}: ${{ variable }}\n\n - name: diffType\n value: ${{ parameters.diffType }}\n\n - template: /eng/pipelines/coreclr/templates/jit-python-variables.yml\n parameters:\n osGroup: ${{ parameters.osGroup }}\n\n - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml\n parameters:\n runtimeFlavor: coreclr\n testGroup: ${{ parameters.testGroup }}\n liveLibrariesBuildConfig: ${{ parameters.liveLibrariesBuildConfig }}\n\n - ${{ if eq(parameters.osGroup, 'windows') }}:\n - name: SpmiCollectionLocation\n value: '$(Build.SourcesDirectory)\artifacts\spmi\'\n - name: SpmiLogsLocation\n value: '$(Build.SourcesDirectory)\artifacts\spmi_logs\'\n - name: SpmiDiffsLocation\n value: '$(Build.SourcesDirectory)\artifacts\spmi_diffs\'\n - name: HelixResultLocation\n value: '$(Build.SourcesDirectory)\artifacts\helixresults\'\n - ${{ if ne(parameters.osGroup, 'windows') }}:\n - name: SpmiCollectionLocation\n value: '$(Build.SourcesDirectory)/artifacts/spmi/'\n - name: SpmiLogsLocation\n value: '$(Build.SourcesDirectory)/artifacts/spmi_logs/'\n - name: SpmiDiffsLocation\n value: '$(Build.SourcesDirectory)/artifacts/spmi_diffs/'\n - name: HelixResultLocation\n value: '$(Build.SourcesDirectory)/artifacts/helixresults/'\n\n - name: SetupScriptDirs\n value: ''\n - ${{ if eq(parameters.diffType, 'asmdiffs') }}:\n - name: SetupScriptDirs\n value: '-checked_directory $(buildProductRootFolderPath)'\n - ${{ if eq(parameters.diffType, 'tpdiff') }}:\n - name: SetupScriptDirs\n value: '-release_directory $(releaseProductRootFolderPath)'\n - ${{ if eq(parameters.diffType, 'all') }}:\n - name: SetupScriptDirs\n value: '-checked_directory $(buildProductRootFolderPath) -release_directory $(releaseProductRootFolderPath)'\n\n workspace:\n clean: all\n pool:\n ${{ parameters.pool }}\n container: ${{ parameters.container }}\n steps:\n - ${{ parameters.steps }}\n\n - script: $(PythonSetupScript)\n displayName: Enable python venv\n\n - ${{ if ne(parameters.osGroup, 'windows') }}:\n - script: |\n mkdir -p $(SpmiCollectionLocation)\n mkdir -p $(SpmiLogsLocation)\n mkdir -p $(SpmiDiffsLocation)\n displayName: Create directories\n - ${{ if eq(parameters.osGroup, 'windows') }}:\n - script: |\n mkdir $(SpmiCollectionLocation)\n mkdir $(SpmiLogsLocation)\n mkdir $(SpmiDiffsLocation)\n displayName: Create directories\n\n - script: $(PythonScript) $(Build.SourcesDirectory)/src/coreclr/scripts/superpmi_diffs_setup.py -source_directory $(Build.SourcesDirectory) $(SetupScriptDirs) -type $(diffType) -platform $(osGroup) -arch $(archType)\n displayName: ${{ format('SuperPMI diffs setup ({0} {1}{2} {3})', parameters.diffType, parameters.osGroup, parameters.osSubgroup, parameters.archType) }}\n\n # Run superpmi-diffs.py script in helix\n - template: /eng/pipelines/common/templates/runtimes/send-to-helix-step.yml\n parameters:\n displayName: 'Send job to Helix'\n helixBuild: $(Build.BuildNumber)\n helixSource: $(_HelixSource)\n helixType: 'build/tests/'\n helixQueues: ${{ join(',', parameters.helixQueues) }}\n creator: dotnet-bot\n WorkItemTimeout: 5:00 # 5 hours\n WorkItemDirectory: '$(WorkItemDirectory)'\n CorrelationPayloadDirectory: '$(CorrelationPayloadDirectory)'\n helixProjectArguments: '$(Build.SourcesDirectory)/src/coreclr/scripts/superpmi-diffs.proj'\n BuildConfig: ${{ parameters.buildConfig }}\n osGroup: ${{ parameters.osGroup }}\n osSubgroup: ${{ parameters.osSubgroup }}\n archType: ${{ parameters.archType }}\n SuperPmiDiffType: ${{ parameters.diffType }}\n SuperPmiBaseJitOptions: ${{ parameters.baseJitOptions }}\n SuperPmiDiffJitOptions: ${{ parameters.diffJitOptions }}\n\n # Always upload the available logs for diagnostics\n - task: CopyFiles@2\n displayName: Copying superpmi.log of all partitions\n inputs:\n sourceFolder: '$(HelixResultLocation)'\n contents: '**/superpmi_*.log'\n targetFolder: '$(SpmiLogsLocation)'\n condition: always()\n\n - task: CopyFiles@2\n displayName: Copying superpmi.json of all partitions\n inputs:\n sourceFolder: '$(HelixResultLocation)'\n contents: '**/superpmi_*.json'\n targetFolder: '$(SpmiDiffsLocation)'\n condition: always()\n\n - ${{ if eq(parameters.diffType, 'asmdiffs') }}:\n - task: CopyFiles@2\n displayName: Copying dasm files of all partitions\n inputs:\n sourceFolder: '$(HelixResultLocation)'\n contents: '**/Asmdiffs_*.zip'\n targetFolder: '$(SpmiDiffsLocation)'\n condition: always()\n\n - script: $(PythonScript) $(Build.SourcesDirectory)/src/coreclr/scripts/superpmi_diffs_summarize.py -source_directory $(Build.SourcesDirectory) -diff_summary_dir $(SpmiDiffsLocation) -type $(diffType) -platform $(osGroup) -arch $(archType)\n displayName: ${{ format('Summarize ({0} {1}{2} {3})', parameters.diffType, parameters.osGroup, parameters.osSubgroup, parameters.archType) }}\n condition: always()\n\n - task: PublishPipelineArtifact@1\n displayName: Publish SuperPMI logs\n inputs:\n targetPath: $(SpmiLogsLocation)\n artifactName: 'SuperPMI_Logs_$(diffType)_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)_Attempt$(System.JobAttempt)'\n condition: always()\n continueOnError: true\n\n - task: PublishPipelineArtifact@1\n displayName: Publish SuperPMI diffs files\n inputs:\n targetPath: $(SpmiDiffsLocation)\n artifactName: 'SuperPMI_Diffs_$(diffType)_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)_Attempt$(System.JobAttempt)'\n condition: always()\n continueOnError: true\n\n - task: PublishPipelineArtifact@1\n displayName: Publish SuperPMI build logs\n inputs:\n targetPath: $(Build.SourcesDirectory)/artifacts/log\n artifactName: 'SuperPMI_BuildLogs_$(diffType)_$(osGroup)$(osSubgroup)_$(archType)_$(buildConfig)_Attempt$(System.JobAttempt)'\n condition: always()\n continueOnError: true\n | dataset_sample\yaml\dotnet_runtime\eng\pipelines\coreclr\templates\run-superpmi-diffs-job.yml | run-superpmi-diffs-job.yml | YAML | 8,835 | 0.95 | 0.099476 | 0.011696 | vue-tools | 921 | 2024-12-26T20:06:35.464483 | MIT | false | fde72903be6349e5f98ba29c2b33e5e7 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.