-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsanityChecks.groovy
More file actions
66 lines (66 loc) · 3.16 KB
/
Copy pathsanityChecks.groovy
File metadata and controls
66 lines (66 loc) · 3.16 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
#!groovy
pipeline {
agent none
options {
timeout(time: 60, unit: 'MINUTES')
}
stages {
stage('Verify VMAgents templates') {
steps {
parallel ( failFast: true,
'Custom Ubuntu without init script (public IP)': {
runSanityChecks('s-cust-no-init-ubuntu-public')
},
/* Temporarily disable 'Custom Ubuntu with init script (public IP)' because the vm agent template is not configured correctly.
'Custom Ubuntu with init script': {
runSanityChecks('s-cust-init-ubuntu-public')
},*/
'Reference Ubuntu with init script (public IP)': {
runSanityChecks('s-ref-ubuntu-public')
},
'Custom Windows with init script (public IP)': {
runSanityChecks('s-cust-windows-public')
},
'Reference Windows with init script (public IP)': {
runSanityChecks('s-ref-windows-public')
},
'Custom Ubuntu without init script (private IP)': {
runSanityChecks('s-cust-no-init-ubuntu-private')
},
'Reference Ubuntu with init script (private IP)': {
runSanityChecks('s-ref-ubuntu-private')
},
'Custom Windows with init script (private IP)': {
runSanityChecks('s-cust-windows-private')
},
'Reference Windows with init script (private IP)': {
runSanityChecks('s-ref-windows-private')
},
'Custom Ubuntu without init script (public IP - with NSG)': {
runSanityChecks('s-cust-no-init-ubuntu-public-nsg')
},
'Reference Ubuntu with init script (public IP - with NSG)': {
runSanityChecks('s-ref-ubuntu-public-nsg')
},
'Custom Windows with init script (public IP - with NSG)': {
runSanityChecks('s-cust-windows-public-nsg')
},
'Reference Windows with init script (public IP - with NSG)': {
runSanityChecks('s-ref-windows-public-nsg')
},
'Custom Ubuntu without init script (private IP - with NSG)': {
runSanityChecks('s-cust-no-init-ubuntu-private-nsg')
},
'Reference Ubuntu with init script (private IP - with NSG)': {
runSanityChecks('s-ref-ubuntu-private-nsg')
},
'Custom Windows with init script (private IP - with NSG)': {
runSanityChecks('s-cust-windows-private-nsg')
},
'Reference Windows with init script (private IP - with NSG)': {
runSanityChecks('s-ref-windows-private-nsg')
})
}
}
}
}