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
18 changes: 16 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,25 @@ resources:
# - container: ubuntu_1604_arm64_cross_container
# image: microsoft/dotnet-buildtools-prereqs:ubuntu-16.04-cross-arm64-a3ae44b-20180315221921

# CI Trigger on master branch
trigger:
- master
branches:
include:
- master
paths:
exclude: # don't trigger the CI if only a doc file was changed
- docs/*
- '**/*.md'

# Trigger builds for PR's targeting master
pr:
- master
branches:
include:
- master
paths:
exclude: # don't trigger the CI if only a doc file was changed
- docs/*
- '**/*.md'

jobs:

Expand Down