forked from microsoft/vs-mef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
42 lines (37 loc) · 948 Bytes
/
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
trigger:
branches:
include: ["master", "v15.8"]
paths:
exclude: ["doc", "*.md"]
variables:
TreatWarningsAsErrors: true
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
BuildConfiguration: Release
BuildPlatform: Any CPU
codecov_token: bfce293b-9f33-43bb-be7f-c1a4ed2b518d
resources:
containers:
- container: xenial
image: andrewarnott/linux-buildagent
jobs:
- job: Windows
pool: Hosted VS2017
steps:
- template: azure-pipelines/build.yml
- job: Linux
pool:
vmImage: Ubuntu 16.04
container: xenial
steps:
- template: azure-pipelines/testfx.yml
parameters:
projectdirectory: src/tests/Microsoft.VisualStudio.Composition.Tests
testlogartifactname: linux_testlogs
- job: macOS
pool:
vmImage: macOS 10.13
steps:
- template: azure-pipelines/testfx.yml
parameters:
projectdirectory: src/tests/Microsoft.VisualStudio.Composition.Tests
testlogartifactname: macOS_testlogs