-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile_CNP
51 lines (41 loc) · 1.01 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
#!groovy
@Library("Infrastructure")
import uk.gov.hmcts.contino.AppPipelineDsl
def type = "nodejs"
def product = "et"
def component = "syr"
def branchesToSync = ['demo', 'perftest', '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')
}
}