From fe0753ea9276ca078d655d04ba5fdca08875d08e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Fri, 23 Aug 2024 12:24:54 +0000 Subject: [PATCH 01/10] Update dependencies from https://github.com/dotnet/arcade build 20240821.4 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.23463.1 -> To Version 8.0.0-beta.24421.4 Dependency coherency updates Microsoft.DotNet.XliffTasks From Version 1.0.0-beta.23426.1 -> To Version 1.0.0-beta.23475.1 (parent: Microsoft.DotNet.Arcade.Sdk --- eng/Version.Details.xml | 8 +- eng/Versions.props | 2 +- eng/common/SetupNugetSources.ps1 | 26 +- eng/common/darc-init.ps1 | 2 +- eng/common/darc-init.sh | 2 +- eng/common/native/init-compiler.sh | 2 +- .../post-build/add-build-to-channel.ps1 | 2 +- eng/common/post-build/publish-using-darc.ps1 | 21 +- .../post-build/trigger-subscriptions.ps1 | 2 +- eng/common/sdk-task.ps1 | 2 +- eng/common/sdl/NuGet.config | 4 +- eng/common/sdl/execute-all-sdl-tools.ps1 | 4 +- eng/common/sdl/init-sdl.ps1 | 8 - eng/common/sdl/sdl.ps1 | 4 +- eng/common/templates-official/job/job.yml | 264 ++++++++++++++++ .../templates-official/job/onelocbuild.yml | 112 +++++++ .../job/publish-build-assets.yml | 160 ++++++++++ .../templates-official/job/source-build.yml | 75 +++++ .../job/source-index-stage1.yml | 83 +++++ .../templates-official/jobs/codeql-build.yml | 31 ++ eng/common/templates-official/jobs/jobs.yml | 97 ++++++ .../templates-official/jobs/source-build.yml | 54 ++++ .../post-build/common-variables.yml | 22 ++ .../post-build/post-build.yml | 287 ++++++++++++++++++ .../post-build/setup-maestro-vars.yml | 70 +++++ .../post-build/trigger-subscription.yml | 13 + .../steps/add-build-to-channel.yml | 13 + .../templates-official/steps/build-reason.yml | 12 + .../steps/component-governance.yml | 13 + .../steps/enable-internal-runtimes.yml | 28 ++ .../steps/execute-codeql.yml | 32 ++ .../templates-official/steps/execute-sdl.yml | 86 ++++++ .../steps/generate-sbom.yml | 48 +++ .../steps/get-delegation-sas.yml | 43 +++ .../steps/get-federated-access-token.yml | 40 +++ .../templates-official/steps/publish-logs.yml | 23 ++ .../templates-official/steps/retain-build.yml | 28 ++ .../steps/send-to-helix.yml | 91 ++++++ .../templates-official/steps/source-build.yml | 129 ++++++++ .../variables/pool-providers.yml | 45 +++ .../variables/sdl-variables.yml | 7 + eng/common/templates/job/job.yml | 6 +- .../templates/job/publish-build-assets.yml | 37 ++- eng/common/templates/job/source-build.yml | 8 + .../templates/job/source-index-stage1.yml | 39 ++- eng/common/templates/jobs/source-build.yml | 8 + .../templates/post-build/common-variables.yml | 2 +- .../templates/post-build/post-build.yml | 30 +- .../post-build/setup-maestro-vars.yml | 28 +- .../templates/steps/component-governance.yml | 2 +- .../steps/enable-internal-runtimes.yml | 28 ++ eng/common/templates/steps/execute-sdl.yml | 7 +- eng/common/templates/steps/generate-sbom.yml | 2 +- .../templates/steps/get-delegation-sas.yml | 43 +++ .../steps/get-federated-access-token.yml | 40 +++ .../templates/steps/telemetry-start.yml | 2 +- .../templates/variables/pool-providers.yml | 12 +- eng/common/tools.ps1 | 16 +- eng/common/tools.sh | 7 +- global.json | 6 +- 60 files changed, 2191 insertions(+), 127 deletions(-) create mode 100644 eng/common/templates-official/job/job.yml create mode 100644 eng/common/templates-official/job/onelocbuild.yml create mode 100644 eng/common/templates-official/job/publish-build-assets.yml create mode 100644 eng/common/templates-official/job/source-build.yml create mode 100644 eng/common/templates-official/job/source-index-stage1.yml create mode 100644 eng/common/templates-official/jobs/codeql-build.yml create mode 100644 eng/common/templates-official/jobs/jobs.yml create mode 100644 eng/common/templates-official/jobs/source-build.yml create mode 100644 eng/common/templates-official/post-build/common-variables.yml create mode 100644 eng/common/templates-official/post-build/post-build.yml create mode 100644 eng/common/templates-official/post-build/setup-maestro-vars.yml create mode 100644 eng/common/templates-official/post-build/trigger-subscription.yml create mode 100644 eng/common/templates-official/steps/add-build-to-channel.yml create mode 100644 eng/common/templates-official/steps/build-reason.yml create mode 100644 eng/common/templates-official/steps/component-governance.yml create mode 100644 eng/common/templates-official/steps/enable-internal-runtimes.yml create mode 100644 eng/common/templates-official/steps/execute-codeql.yml create mode 100644 eng/common/templates-official/steps/execute-sdl.yml create mode 100644 eng/common/templates-official/steps/generate-sbom.yml create mode 100644 eng/common/templates-official/steps/get-delegation-sas.yml create mode 100644 eng/common/templates-official/steps/get-federated-access-token.yml create mode 100644 eng/common/templates-official/steps/publish-logs.yml create mode 100644 eng/common/templates-official/steps/retain-build.yml create mode 100644 eng/common/templates-official/steps/send-to-helix.yml create mode 100644 eng/common/templates-official/steps/source-build.yml create mode 100644 eng/common/templates-official/variables/pool-providers.yml create mode 100644 eng/common/templates-official/variables/sdl-variables.yml create mode 100644 eng/common/templates/steps/enable-internal-runtimes.yml create mode 100644 eng/common/templates/steps/get-delegation-sas.yml create mode 100644 eng/common/templates/steps/get-federated-access-token.yml diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index 8395d680ed5..4e60d9967b6 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -98,14 +98,14 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 3a25a7f1cc446b60678ed25c9d829420d6321eba - + https://github.com/dotnet/arcade - 1d451c32dda2314c721adbf8829e1c0cd4e681ff + 4460b755f3c7c89e9660d9580ff79afc4218dd85 - + https://github.com/dotnet/xliff-tasks - 194f32828726c3f1f63f79f3dc09b9e99c157b11 + 73f0850939d96131c28cf6ea6ee5aacb4da0083a - + https://github.com/dotnet/arcade - 8c08d889b3c0b3f19398faceaccd74d0f184a3fb + ff79f814c1cd7bcc9902fb713fe016e6534418b4 diff --git a/eng/Versions.props b/eng/Versions.props index 280f824cee0..71c93e66ecd 100644 --- a/eng/Versions.props +++ b/eng/Versions.props @@ -50,7 +50,7 @@ 6.0.2-servicing.22064.6 6.0.1 9.0.0-alpha.1.24113.1 - 8.0.0-beta.24463.3 + 8.0.0-beta.24470.2 1.0.0-beta.23475.1 1.0.0-beta.23475.1 4.10.0-3.24169.7 diff --git a/global.json b/global.json index 492c5cc06c9..f32cf24dc8a 100644 --- a/global.json +++ b/global.json @@ -21,7 +21,7 @@ "rollForward": "latestPatch" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24463.3", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24470.2", "Microsoft.Build.NoTargets": "2.0.1" } } From 26fcb1859eb01643a9f23b8e15ab7f7f3c7e9d6e Mon Sep 17 00:00:00 2001 From: "dotnet-maestro[bot]" Date: Tue, 24 Sep 2024 13:45:32 +0000 Subject: [PATCH 10/10] Update dependencies from https://github.com/dotnet/arcade build 20240920.2 Microsoft.DotNet.Arcade.Sdk From Version 8.0.0-beta.24463.3 -> To Version 8.0.0-beta.24470.2 --- eng/Version.Details.xml | 4 ++-- global.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml index df631a14f9f..9c901c1a390 100644 --- a/eng/Version.Details.xml +++ b/eng/Version.Details.xml @@ -98,9 +98,9 @@ https://dev.azure.com/dnceng/internal/_git/dotnet-runtime 3a25a7f1cc446b60678ed25c9d829420d6321eba - + https://github.com/dotnet/arcade - 8c08d889b3c0b3f19398faceaccd74d0f184a3fb + ff79f814c1cd7bcc9902fb713fe016e6534418b4 diff --git a/global.json b/global.json index a5a2578b2dc..a6ddd38a092 100644 --- a/global.json +++ b/global.json @@ -21,7 +21,7 @@ "rollForward": "latestPatch" }, "msbuild-sdks": { - "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24463.3", + "Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24470.2", "Yarn.MSBuild": "1.22.10" } }