forked from microsoft/python-language-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathazure-pipelines.yml
49 lines (44 loc) · 1.11 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
45
46
47
48
49
# Pipeline for publishing nuget packages
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
# build number format
name: $(VersionMajorMinor)$(VersionPatchCounter)
trigger:
branches:
include:
- master
- azure-pipelines
pool:
name: VSEngSS-MicroBuild2019-1ES
# Need a job for win-x86,win-x64,osx-x64,linux-x64,any
jobs:
- job: x86
displayName: "Build x86"
steps:
- template: build/azure-pipeline-steps.yml
parameters:
OSTarget: win-x86
- job: x64
displayName: "Build x64"
steps:
- template: build/azure-pipeline-steps.yml
parameters:
OSTarget: win-x64
- job: DX64
displayName: "Build osxX64"
steps:
- template: build/azure-pipeline-steps.yml
parameters:
OSTarget: osx-x64
- job: LX64
displayName: "Build linuxX64"
steps:
- template: build/azure-pipeline-steps.yml
parameters:
OSTarget: linux-x64
- job: AnyCPU
displayName: "Build AnyCPU"
steps:
- template: build/azure-pipeline-steps.yml
parameters:
OSTarget: any