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.1
- internal/release/6.1

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 * * Sun'
displayName: Weekly Saturday 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.1
- internal/release/6.1
always: true

# Scheduled runs.
schedules:

# GitHub main on Sundays
Comment thread
paulmedynski marked this conversation as resolved.
Outdated
- cron: '30 4 * * Sun'
displayName: Sunday Run
branches:
include:
- release/6.1
always: true

# ADO internal/main on Sundays.
Comment thread
paulmedynski marked this conversation as resolved.
Outdated
- cron: '30 5 * * Sun'
displayName: Sunday Run
branches:
include:
- internal/release/6.1
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.1
- internal/release/6.1

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

schedules:
- cron: '0 5 * * Sun'
displayName: Weekly Saturday 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.1
- internal/release/6.1
always: true

# Scheduled runs.
schedules:

# GitHub main on Sundays
Comment thread
paulmedynski marked this conversation as resolved.
Outdated
- cron: '0 4 * * Sun'
displayName: Sunday Run
branches:
include:
- release/6.1
always: true

# ADO internal/main on Sundays.
Comment thread
paulmedynski marked this conversation as resolved.
Outdated
- cron: '0 5 * * Sun'
displayName: Sunday Run
branches:
include:
- internal/release/6.1
always: true

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