-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathazure-pipelines.yml
129 lines (57 loc) · 2.43 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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
# Maven
# Build your Java projects and run tests with Apache Maven.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/java
pool:
name: Hosted Ubuntu 1604
demands: maven
#Your build pipeline references an undefined variable named ‘Parameters.mavenPOMFile’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab. See https://go.microsoft.com/fwlink/?linkid=865972
#Your build pipeline references an undefined variable named ‘Parameters.containerregistrytype’. Create or edit the build pipeline for this YAML file, define the variable on the Variables tab. See https://go.microsoft.com/fwlink/?linkid=865972
variables:
ImageName: 'seicentobilling'
AppVersion: '2.1.3'
steps:
- task: Maven@2
displayName: 'Maven SeicentoBilling/pom.xml'
inputs:
mavenPomFile: '$(Parameters.mavenPOMFile)'
publishJUnitResults: false
- task: CopyFiles@2
displayName: 'Copy Files to: $(build.artifactstagingdirectory)'
inputs:
SourceFolder: '$(system.defaultworkingdirectory)'
Contents: '**/*.war'
TargetFolder: '$(build.artifactstagingdirectory)'
- task: CopyFiles@2
displayName: 'Copy Files to: docker'
inputs:
SourceFolder: target
Contents: '*.war'
TargetFolder: docker
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: wars'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
ArtifactName: wars
- task: Docker@1
displayName: 'Build an image on Release'
inputs:
containerregistrytype: 'Container Registry'
dockerRegistryEndpoint: 'Dockerhub Josef Muri'
dockerFile: docker/hub/Dockerfile
imageName: 'jmurihub/$(ImageName):$(AppVersion)'
enabled: false
- task: Docker@1
displayName: 'Build an image based on build - CI'
inputs:
containerregistrytype: 'Container Registry'
dockerRegistryEndpoint: 'Dockerhub Josef Muri'
dockerFile: docker/Dockerfile
imageName: 'jmurihub/$(ImageName):$(AppVersion)'
- task: Docker@1
displayName: 'Push an image'
inputs:
containerregistrytype: '$(Parameters.containerregistrytype)'
dockerRegistryEndpoint: 'Dockerhub Josef Muri'
command: 'Push an image'
imageName: 'jmurihub/$(ImageName):$(AppVersion)'