Skip to content

Commit

Permalink
Update pipeline to contain CI post-commit triggers and schedules
Browse files Browse the repository at this point in the history
  • Loading branch information
Bret Barkelew committed Nov 1, 2020
1 parent 7150d64 commit 0d7ab49
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
13 changes: 12 additions & 1 deletion .azurepipelines/Ubuntu-GCC5.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,18 @@
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
# MU_CHANGE BEGIN
trigger: none
trigger:
- dev/*
- release/*

schedules:
- cron: "30 9 * * 0,3" # Sun/Wed at 2:30AM Pacific
displayName: Sun/Wed Build
branches:
include:
- dev/*
- release/*
always: true # Always build, even if no changes

pr:
- dev/*
Expand Down
13 changes: 12 additions & 1 deletion .azurepipelines/Windows-VS2019.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,18 @@
# SPDX-License-Identifier: BSD-2-Clause-Patent
##
# MU_CHANGE BEGIN
trigger: none
trigger:
- dev/*
- release/*

schedules:
- cron: "0 8 * * 0,3" # Sun/Wed at 1AM Pacific
displayName: Sun/Wed Build
branches:
include:
- dev/*
- release/*
always: true # Always build, even if no changes

pr:
- dev/*
Expand Down

0 comments on commit 0d7ab49

Please sign in to comment.