-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathJenkinsfile_nightly
48 lines (41 loc) · 1.56 KB
/
Jenkinsfile_nightly
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
#!groovy
properties([
// H allow predefined but random minute see https://en.wikipedia.org/wiki/Cron#Non-standard_characters
//CCD-3539 (Stop running Nightly builds on weekends). Original schedule was 'H 05 * * *'
pipelineTriggers([cron('H 08 * * 1-5')])
])
@Library("Infrastructure")
def type = "java"
def product = "ccd"
def component = "user-profile-api"
def secrets = [
'ccd-${env}': [
secret('ccd-api-gateway-oauth2-client-secret', 'CCD_API_GATEWAY_OAUTH2_CLIENT_SECRET'),
secret('definition-importer-username', 'DEFINITION_IMPORTER_USERNAME'),
secret('definition-importer-password', 'DEFINITION_IMPORTER_PASSWORD')
],
's2s-${env}': [
secret('microservicekey-ccd-data', 'BEFTA_S2S_CLIENT_SECRET'),
secret('microservicekey-ccd-data', 'CCD_DS_SERVICE_SECRET')
]
]
static LinkedHashMap<String, Object> secret(String secretName, String envVar) {
[ $class: 'AzureKeyVaultSecret',
secretType: 'Secret',
name: secretName,
version: '',
envVariable: envVar
]
}
// Prevent Docker hub rate limit errors by ensuring that testcontainers uses images from hmctspublic ACR
env.TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX = "hmctspublic.azurecr.io/imported/"
withNightlyPipeline(type, product, component) {
loadVaultSecrets(secrets)
enableFortifyScan()
enableDbMigration('ccd')
enableSlackNotifications('#ccd-nightly-builds')
enableHighLevelDataSetup()
afterAlways('fortify-scan') {
steps.archiveArtifacts allowEmptyArchive: true, artifacts: '**/Fortify Scan/**/*'
}
}