-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathci.mgmt.yml
74 lines (64 loc) · 1.65 KB
/
ci.mgmt.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
resources:
repositories:
- repository: azure-sdk-build-tools
type: git
name: internal/azure-sdk-build-tools
trigger:
branches:
include:
- master
- feature/*
- hotfix/*
- release/*
paths:
include:
- sdk/appplatform/
exclude:
- sdk/appplatform/microsoft-azure
pr:
branches:
include:
- master
- feature/*
- hotfix/*
- release/*
paths:
include:
- sdk/appplatform/
exclude:
- sdk/appplatform/microsoft-azure
variables:
BuildOptions: '--batch-mode -Dgpg.skip -Dmaven.wagon.http.pool=false'
ServiceDirectory: appplatform
ProfileFlag: ''
jobs:
- job: 'Build'
variables:
- template: ../../eng/pipelines/templates/variables/globals.yml
strategy:
matrix:
Java 8:
ArtifactName: 'packages'
JavaVersion: '1.8'
Java 7:
ArtifactName: 'packages'
JavaVersion: '1.7'
pool:
vmImage: 'ubuntu-16.04'
steps:
- task: Maven@3
displayName: 'Build'
inputs:
mavenPomFile: sdk/$(ServiceDirectory)/pom.mgmt.xml
goals: 'compile'
options: '$(BuildOptions) $(ProfileFlag) "-DpackageOutputDirectory=$(Build.ArtifactStagingDirectory)" -DskipTests'
mavenOptions: '$(MemoryOptions) $(LoggingOptions)'
javaHomeOption: 'JDKVersion'
jdkVersionOption: $(JavaVersion)
jdkArchitectureOption: 'x64'
publishJUnitResults: false
- task: PublishTestResults@2
condition: succeededOrFailed()
inputs:
mergeTestResults: true
testRunTitle: 'On Java $(JavaVersion)'