Add CI and PR triggers to coverage pipelines

This commit is contained in:
Adam Yoblick 2023-08-11 16:10:40 -05:00
parent 86a0ede4c1
commit 014cdac951
3 changed files with 54 additions and 0 deletions

View file

@ -1,3 +1,21 @@
# This pipeline is used to run unit test code coverage against debugpy public repo.
# Trigger ci builds for commits into master and any release branches
trigger:
branches:
include:
- main
- release/*
# Trigger pr builds for commits into master and any release branches
# Ignore draft PR's
pr:
branches:
include:
- main
- release/*
drafts: false
variables:
architecture: "x64"
python.version: "3.8"

View file

@ -1,3 +1,21 @@
# This pipeline is used to run unit test code coverage against debugpy public repo.
# Trigger ci builds for commits into master and any release branches
trigger:
branches:
include:
- main
- release/*
# Trigger pr builds for commits into master and any release branches
# Ignore draft PR's
pr:
branches:
include:
- main
- release/*
drafts: false
variables:
architecture: "x64"
python.version: "3.8"

View file

@ -1,3 +1,21 @@
# This pipeline is used to run unit test code coverage against debugpy public repo.
# Trigger ci builds for commits into master and any release branches
trigger:
branches:
include:
- main
- release/*
# Trigger pr builds for commits into master and any release branches
# Ignore draft PR's
pr:
branches:
include:
- main
- release/*
drafts: false
variables:
architecture: "x64"
python.version: "3.8"