Skip to content
Merged
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
12 changes: 10 additions & 2 deletions build/ci/vscode-python-nightly-ci.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# Nightly build
# Notes: Scheduled builds don't have a trigger in YAML (as of this writing).
# Trigger is set through the Azure DevOps UI `Nightly Build->Edit->...->Triggers`.

name: '$(Year:yyyy).$(Month).0.$(BuildID)-alpha'

Expand All @@ -10,6 +8,16 @@ trigger: none
# Not the PR build for merges to master and release.
pr: none

schedules:
- cron: "0 0 * * 1-5"
# Daily midnight build, runs Monday - Friday always
displayName: Nightly build
branches:
include:
- master
- release
always: true

# Variables that are available for the entire pipeline.
variables:
PythonVersion: '3.7'
Expand Down