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
9 changes: 6 additions & 3 deletions eng/ci/official.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ trigger:
- v3.x/*

schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
- cron: "0 2 * * *"
displayName: Daily 2 AM build
branches:
include:
- dev
Expand All @@ -24,7 +24,10 @@ resources:
type: git
name: 1ESPipelineTemplates/1ESPipelineTemplates
ref: refs/tags/release

${{ if eq( variables['Build.Reason'], 'Schedule' ) }}:
demands:
- Priority -equals Low

variables:
Configuration: Release
buildNumber: $[ counter('build', 4000) ] # Start higher than the versions from the previous pipeline. Every build (pr or branch) will increment.
Expand Down
9 changes: 6 additions & 3 deletions eng/ci/public.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ trigger:
- dev

schedules:
- cron: "0 0 * * *"
displayName: Daily midnight build
- cron: "0 2 * * *"
displayName: Daily 2 AM build
branches:
include:
- dev
Expand All @@ -26,7 +26,10 @@ extends:
name: 1es-pool-azfunc-public
image: 1es-windows-2022
os: windows

${{ if eq( variables['Build.Reason'], 'Schedule' ) }}:
demands:
- Priority -equals Low

stages:
- stage: WindowsUnitTests
dependsOn: []
Expand Down
Loading