forked from hmcts/prl-cos-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile_CNP
68 lines (54 loc) · 1.67 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
#!groovy
import uk.gov.hmcts.contino.AppPipelineDsl
properties([
[$class: 'GithubProjectProperty', projectUrlStr: 'https://github.com/hmcts/prl-cos-api.git'],
pipelineTriggers([[$class: 'GitHubPushTrigger']])
])
@Library("Infrastructure")
def type = "java"
def product = "prl"
def component = "cos"
static LinkedHashMap<String, Object> secret(String secretName, String envVar) {
[$class : 'AzureKeyVaultSecret',
secretType : 'Secret',
name : secretName,
version : '',
envVariable: envVar
]
}
def secrets = [
'prl-${env}': [
]
]
// Vars for Kubernetes
env.PACT_BROKER_FULL_URL = 'https://pact-broker.platform.hmcts.net'
withPipeline(type, product, component) {
loadVaultSecrets(secrets)
enableAksStagingDeployment()
disableLegacyDeployment()
after('checkout') {
echo 'prl-cos-api checked out'
}
after('test') {
steps.junit '**/test-results/**/*.xml'
steps.archiveArtifacts allowEmptyArchive: true, artifacts: 'build/reports/**/*'
}
before('functionalTest:aat') {
env.test_environment = 'aat'
}
after('functionalTest:aat') {
steps.archiveArtifacts allowEmptyArchive: true, artifacts: '**/site/serenity/**/*'
steps.archiveArtifacts allowEmptyArchive: true, artifacts: 'build/reports/**/*'
}
// Kubernetes does not retrieve variables from the output terraform
before('functionalTest:preview') {
env.test_environment = 'aat'
}
after('functionalTest:preview') {
steps.archiveArtifacts allowEmptyArchive: true, artifacts: '**/site/serenity/**/*'
steps.archiveArtifacts allowEmptyArchive: true, artifacts: 'build/reports/**/*'
}
onMaster() {
enablePactAs([AppPipelineDsl.PactRoles.CONSUMER])
}
}