generated from hmcts/expressjs-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Jenkinsfile_CNP
92 lines (80 loc) · 2.22 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
#!groovy
@Library("Infrastructure")
import uk.gov.hmcts.contino.AppPipelineDsl
def type = "nodejs"
def product = "et"
def component = "sya"
def branchesToSync = ['perftest', 'demo', 'ithc']
def yarnBuilder = new uk.gov.hmcts.contino.YarnBuilder(this)
def secrets = [
'et-${env}': [
secret('test-username', 'TEST_CASE_USERNAME'),
secret('test-password', 'TEST_CASE_PASSWORD')
]
]
def inTestTrue = [
'et-${env}': [
secret('true', 'IN_TEST')
]
]
def inTestFalse = [
'et-${env}': [
secret('', 'IN_TEST')
]
]
static LinkedHashMap<String, Object> secret(String secretName, String envVar) {
[ $class: 'AzureKeyVaultSecret',
secretType: 'Secret',
name: secretName,
version: '',
envVariable: envVar
]
}
withPipeline(type, product, component) {
loadVaultSecrets(secrets)
disableLegacyDeployment()
syncBranchesWithMaster(branchesToSync)
enableSlackNotifications('#et-builds')
afterAlways('build') {
yarnBuilder.yarn('build')
}
afterAlways('smoketest:aat') {
loadVaultSecrets(inTestTrue)
stage('Accessibility') {
yarnBuilder.yarn('tests:a11y')
publishHTML([
allowMissing : true,
alwaysLinkToLastBuild: true,
keepAll : true,
reportDir : "functional-output/accessibility-report",
reportFiles : 'a11y.html',
reportName : 'Accessibility results'
])
}
loadVaultSecrets(inTestFalse)
sh """
yarn playwright install
"""
}
afterAlways('smoketest:preview') {
loadVaultSecrets(inTestTrue)
stage('Accessibility') {
yarnBuilder.yarn('tests:a11y')
publishHTML([
allowMissing : true,
alwaysLinkToLastBuild: true,
keepAll : true,
reportDir : "functional-output/accessibility-report",
reportFiles : 'a11y.html',
reportName : 'Accessibility results'
])
}
loadVaultSecrets(inTestFalse)
sh """
yarn playwright install
"""
}
enablePactAs([
AppPipelineDsl.PactRoles.CONSUMER
])
}