-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpipeline.ci.bicep.yml
47 lines (37 loc) · 1.11 KB
/
pipeline.ci.bicep.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
---
name: $(BuildDefinitionName).$(DayOfYear)$(Rev:.r)
trigger:
- none
pr:
- none
variables:
#=============================================================#
# The following Variables should be set on the pipeline level #
#=============================================================#
- name: agentImage
value: "ubuntu-latest"
# Commented out to use the values from the Azdo pipeline variables
# - name: environmentName
# value: "dev"
# - name: locationName
# value: "westus"
- name: excludedFolders
value: ","
pool:
vmImage: $(agentImage)
jobs:
- template: ./template.bicep.validate.yml
parameters:
environmentName: $(environmentName)
locationName: $(locationName)
excludedFolders: $(excludedFolders)
- template: ./template.bicep.previewdeploy.yml
parameters:
environmentName: $(environmentName)
locationName: $(locationName)
excludedFolders: $(excludedFolders)
- template: ./template.bicep.test.yml
parameters:
environmentName: $(environmentName)
locationName: $(locationName)
excludedFolders: $(excludedFolders)