Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
54 changes: 42 additions & 12 deletions eng/pipelines/dotnet-sqlclient-ci-package-reference-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,59 @@
#################################################################################

name: $(DayOfYear)$(Rev:rr)
trigger:
batch: true

# Trigger PR validation runs for all pushes to PRs that target the specified
# branches.
#
# https://learn.microsoft.com/en-us/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml#pr-triggers
#
pr:
branches:
include:
- release/6.0
- internal/release/6.0

paths:
include:
- src\Microsoft.Data.SqlClient\netcore\ref
- src\Microsoft.Data.SqlClient\netfx\ref
- src\Microsoft.Data.SqlClient\ref
- .azuredevops
- .config
- doc
- eng
- src
- tools
- .config
- Nuget.config
- azurepipelines-coverage.yml
- build.proj
- NuGet.config

schedules:
- cron: '0 5 * * Sat'
displayName: Weekly Friday 10:00 PM (UTC - 7) Build
# Commit triggers for CI runs on specified branches.
#
# No paths filters are specified, so all commits to the branches will trigger a
# build.
#
trigger:
batch: true
branches:
include:
- release/6.0
- internal/release/6.0
always: true

# Scheduled runs.
schedules:

# GitHub on Sundays 06:30 UTC.
- cron: '30 6 * * Sun'
displayName: Sunday Run
branches:
include:
- release/6.0
always: true

# ADO on Sundays 07:30 UTC.
- cron: '30 7 * * Sun'
displayName: Sunday Run
branches:
include:
- internal/release/6.0
always: true

parameters: # parameters are shown up in ADO UI in a build queue time
- name: 'debug'
Expand Down
51 changes: 41 additions & 10 deletions eng/pipelines/dotnet-sqlclient-ci-project-reference-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,59 @@
#################################################################################

name: $(DayOfYear)$(Rev:rr)
trigger:
batch: true

# Trigger PR validation runs for all pushes to PRs that target the specified
# branches.
#
# https://learn.microsoft.com/en-us/azure/devops/pipelines/repos/github?view=azure-devops&tabs=yaml#pr-triggers
#
pr:
branches:
include:
- release/6.0
- internal/release/6.0

paths:
include:
- src
- .azuredevops
- .config
- doc
- eng
- src
- tools
- .config
- azurepipelines-coverage.yml
- build.proj
- Nuget.config
- NuGet.config

schedules:
- cron: '0 5 * * Sat'
displayName: Weekly Friday 10:00 PM (UTC - 7) Build
# Commit triggers for CI runs on specified branches.
#
# No paths filters are specified, so all commits to the branches will trigger a
# build.
#
trigger:
batch: true
branches:
include:
- release/6.0
- internal/release/6.0
always: true

# Scheduled runs.
schedules:

# GitHub on Sundays 06:00 UTC.
- cron: '0 6 * * Sun'
displayName: Sunday Run
branches:
include:
- release/6.0
always: true

# ADO on Sundays 07:00 UTC.
- cron: '0 7 * * Sun'
displayName: Sunday Run
branches:
include:
- internal/release/6.0
always: true

parameters: # parameters are shown up in ADO UI in a build queue time
- name: 'debug'
Expand Down
Loading