From 9c5ed368211486725ae24bfbcfa48cb90cee8131 Mon Sep 17 00:00:00 2001 From: Andy Staples Date: Mon, 29 Jun 2026 15:03:05 -0600 Subject: [PATCH 1/2] Split ado release pipeline into two, gated stages --- eng/ci/release.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/eng/ci/release.yml b/eng/ci/release.yml index 7b58c7fd..b471e1d6 100644 --- a/eng/ci/release.yml +++ b/eng/ci/release.yml @@ -20,7 +20,8 @@ extends: os: linux stages: - - stage: release + - stage: release_durabletask + displayName: "Release durabletask" jobs: - job: durabletask displayName: "Release durabletask" @@ -59,6 +60,13 @@ extends: mainpublisher: "durabletask-java" domaintenantid: "33e01921-4d64-4f8c-a055-5bdaffd5e33d" + - stage: release_durabletask_azuremanaged + displayName: "Release durabletask-azuremanaged" + # Wait for the core durabletask stage to finish before publishing the + # dependent provider package. If the durabletask stage is de-selected + # at queue time, ADO skips it and this stage runs on its own. + dependsOn: release_durabletask + jobs: - job: durabletask_azuremanaged displayName: "Release durabletask-azuremanaged" templateContext: From 5f797ae975ce64100bb2ddd13160e07cbb0e2f81 Mon Sep 17 00:00:00 2001 From: Andy Staples Date: Mon, 29 Jun 2026 15:03:59 -0600 Subject: [PATCH 2/2] Weekly scheduled builds --- eng/ci/official-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eng/ci/official-build.yml b/eng/ci/official-build.yml index 429e2510..a430a05b 100644 --- a/eng/ci/official-build.yml +++ b/eng/ci/official-build.yml @@ -11,11 +11,11 @@ trigger: pr: none schedules: - # Build nightly to catch any new CVEs and report SDL often. + # Build weekly to catch any new CVEs and report SDL often. # We are also required to generate CodeQL reports weekly, so this # helps us meet that. - - cron: "0 5 * * *" - displayName: Nightly Build + - cron: "0 5 * * 0" + displayName: Weekly Build branches: include: - main