-
Notifications
You must be signed in to change notification settings - Fork 206
/
azure-pipelines.yml
44 lines (41 loc) · 1.18 KB
/
azure-pipelines.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
parameters: # user-configurable parameters
- name: skip_assembly_signing
displayName: Skip Assembly Signing
type: boolean
default: false
pr:
branches:
include:
- main
- dev
paths:
exclude: # don't trigger builds for file changes matching these paths
- src/WebJobs.Extensions.CosmosDB/*
trigger:
branches:
include:
- main
- dev
tags:
exclude:
- cosmos-v*
paths:
exclude: # don't trigger builds for file changes matching these paths
- test/WebJobs.Extensions.CosmosDB.Tests/*
extends:
template: build/pipelines/templates/ci.yml
parameters: # template parameters
skip_assembly_signing: ${{ parameters.skip_assembly_signing }}
target_projects:
- WebJobs.Extensions
- WebJobs.Extensions.Http
- WebJobs.Extensions.SendGrid
- WebJobs.Extensions.Timers.Storage
- WebJobs.Extensions.Twilio
# WebJobs.Extensions.CosmosDB is run by a separate pipeline defined in its src/ folder
target_tests:
- WebJobs.Extensions.Tests
- WebJobs.Extensions.Http.Tests
- WebJobs.Extensions.MobileApps.Tests
- WebJobs.Extensions.SendGrid.Tests
- WebJobs.Extensions.Twilio.Tests