-
Notifications
You must be signed in to change notification settings - Fork 501
Expand file tree
/
Copy pathazure-pipelines.yml.example
More file actions
68 lines (64 loc) · 1.88 KB
/
Copy pathazure-pipelines.yml.example
File metadata and controls
68 lines (64 loc) · 1.88 KB
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
trigger:
branches:
include:
- production
pr:
branches:
include:
- production
jobs:
- job: adhoc
displayName: Validate and Test Adhoc Tasks and Plans
pool:
vmImage: ubuntu-latest
container: puppet/puppet-dev-tools:puppet8
steps:
- checkout: self
- script: pdk validate
displayName: PDK Validate
workingDirectory: ./site-modules/adhoc
- script: pdk bundle exec rake spec_prep
displayName: Download Modules
workingDirectory: ./site-modules/adhoc
env:
FORGE_KEY: $(FORGE_KEY)
- script: pdk test unit
displayName: PDK Test Unit
workingDirectory: ./site-modules/adhoc
- job: profiles
displayName: Validate and Test Profiles (Unit testing)
pool:
vmImage: ubuntu-latest
container: puppet/puppet-dev-tools:puppet8
steps:
- checkout: self
- script: pdk validate
displayName: PDK Validate
workingDirectory: ./site-modules/profile
- script: pdk bundle exec rake spec_prep
displayName: Download Modules
workingDirectory: ./site-modules/profile
env:
FORGE_KEY: $(FORGE_KEY)
- script: pdk test unit
displayName: PDK Test Unit
workingDirectory: ./site-modules/profile
- job: roles
displayName: Validate and Test Roles (Integration testing)
dependsOn: profiles
pool:
vmImage: ubuntu-latest
container: puppet/puppet-dev-tools:puppet8
steps:
- checkout: self
- script: pdk validate
displayName: PDK Validate
workingDirectory: ./site-modules/role
- script: pdk bundle exec rake spec_prep
displayName: Download Modules
workingDirectory: ./site-modules/role
env:
FORGE_KEY: $(FORGE_KEY)
- script: pdk test unit
displayName: PDK Test Unit
workingDirectory: ./site-modules/role