-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathlinux.yml
More file actions
36 lines (32 loc) · 936 Bytes
/
linux.yml
File metadata and controls
36 lines (32 loc) · 936 Bytes
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
name: PR-$(System.PullRequest.PullRequestNumber)-$(Date:yyyyMMdd)$(Rev:.rr)
variables:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
POWERSHELL_TELEMETRY_OPTOUT: 1
# Avoid expensive initialization of dotnet cli, see: http://donovanbrown.com/post/Stop-wasting-time-during-NET-Core-builds
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
resources:
- repo: self
clean: true
jobs:
- job: Build
pool:
vmImage: ubuntu-latest
strategy:
matrix:
Linux ARM Native:
buildName: ubuntu.16.04-arm
Linux ARM64 Native:
buildName: ubuntu.16.04-arm64
Linux Native:
buildName: centos.7
Linux Alpine:
buildName: alpine
Linux Alpine ARM:
buildName: alpine-arm
Linux Alpine ARM64:
buildName: alpine-arm64
steps:
- powershell: |
tools/releaseBuild/vstsBuild.ps1 -Name $(buildName) -Verbose
displayName: Start build - $(buildName)
condition: succeeded()