-
Notifications
You must be signed in to change notification settings - Fork 1
/
Jenkinsfile_CNP
137 lines (110 loc) · 3.9 KB
/
Jenkinsfile_CNP
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
130
131
132
133
134
135
136
137
#!groovy
import uk.gov.hmcts.contino.GithubAPI
properties([
// H allow predefined but random minute see https://en.wikipedia.org/wiki/Cron#Non-standard_characters
//pipelineTriggers([cron('H 05 * * *')])
])
@Library("Infrastructure")
import uk.gov.hmcts.contino.GradleBuilder
def type = "java"
def product = "pcq"
def component = "loader"
def branchesToSync = ['demo']
def secrets = [
'pcq-${env}': [
secret( 'jwt-secret', 'JWT_SECRET'),
secret( 'pcq-storage-account-name', 'STORAGE_ACCOUNT_NAME'),
secret( 'pcq-storage-account-primary-access-key', 'STORAGE_KEY')
]
]
static LinkedHashMap<String, Object> secret(String secretName, String envVar) {
[ $class: 'AzureKeyVaultSecret',
secretType: 'Secret',
name: secretName,
version: '',
envVariable: envVar
]
}
GradleBuilder builder = new GradleBuilder(this, product)
def vaultOverrides = [
'preview' : 'aat'
]
withPipeline(type, product, component) {
overrideVaultEnvironments(vaultOverrides)
loadVaultSecrets(secrets)
afterAlways('test') {
builder.gradle('integration')
}
enableSlackNotifications('#pcq-builds')
enableAksStagingDeployment()
disableLegacyDeployment()
nonServiceApp()
syncBranchesWithMaster(branchesToSync)
env.TEST_URL = "http://pcq-loader-aat.service.core-compute-aat.internal"
env.PCQ_BACKEND_URL = "http://pcq-backend-aat.service.core-compute-aat.internal"
env.STORAGE_URL = "https://pcqsharedaat.blob.core.windows.net"
afterAlways('test') {
junit 'build/test-results/test/**/*.xml'
archiveArtifacts 'build/reports/tests/test/index.html'
publishHTML target: [
allowMissing : true,
alwaysLinkToLastBuild: true,
keepAll : true,
reportDir : "build/reports/tests/test",
reportFiles : "index.html",
reportName : "pcq-loader Test Report"
]
publishHTML target: [
allowMissing : true,
alwaysLinkToLastBuild: true,
keepAll : true,
reportDir : "build/reports/jacoco",
reportFiles : "index.html",
reportName : "pcq-loader Code Coverage Report"
]
}
//before('buildinfra:prod') {
// error 'Deliberately breaking pipeline to prevent prod deployment'
//}
afterAlways('akschartsinstall') {
echo "Overriding vault environment"
overrideVaultEnvironments(vaultOverrides)
echo "Loading the secrets again"
loadVaultSecrets(secrets)
// To run functional tests
env.S2S_NAME = 'pcq_loader'
env.PCQ_BACKEND_URL = "http://pcq-backend-aat.service.core-compute-aat.internal"
echo "Just waiting a while to ensure that the pod has run the job"
sh "sleep 120s"
echo "Verifying that functional test data was processed correctly"
try {
builder.gradle('functional')
} finally {
junit '**/test-results/**/*.xml'
}
}
afterAlways('functionalTest:aat') {
junit 'build/test-results/functional/**/*.xml'
archiveArtifacts 'build/reports/tests/functional/index.html'
publishHTML target: [
allowMissing : true,
alwaysLinkToLastBuild: true,
keepAll : true,
reportDir : "build/reports/tests/functional",
reportFiles : "index.html",
reportName : "pcq-loader Functional Test Report"
]
}
afterAlways('functionalTest:preview') {
junit 'build/test-results/functional/**/*.xml'
archiveArtifacts 'build/reports/tests/functional/index.html'
publishHTML target: [
allowMissing : true,
alwaysLinkToLastBuild: true,
keepAll : true,
reportDir : "build/reports/tests/functional",
reportFiles : "index.html",
reportName : "pcq-loader Functional Test Report"
]
}
}