Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions eng/ci/official-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 9 additions & 1 deletion eng/ci/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ extends:
os: linux

stages:
- stage: release
- stage: release_durabletask
displayName: "Release durabletask"
jobs:
- job: durabletask
displayName: "Release durabletask"
Expand Down Expand Up @@ -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
Comment on lines +65 to +68
jobs:
- job: durabletask_azuremanaged
displayName: "Release durabletask-azuremanaged"
templateContext:
Expand Down
Loading