forked from bcgov/nrts-prc-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJenkinsfile
68 lines (64 loc) · 1.82 KB
/
Jenkinsfile
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
def sonarqubePodLabel = "prc-api-${UUID.randomUUID().toString()}"
podTemplate(label: sonarqubePodLabel, name: sonarqubePodLabel, serviceAccount: 'jenkins', cloud: 'openshift', containers: [
containerTemplate(
name: 'jnlp',
image: '172.50.0.2:5000/openshift/jenkins-slave-python3nodejs',
resourceRequestCpu: '500m',
resourceLimitCpu: '1000m',
resourceRequestMemory: '1Gi',
resourceLimitMemory: '4Gi',
workingDir: '/tmp',
command: '',
args: '${computer.jnlpmac} ${computer.name}',
envVars: [
envVar(key: 'SONARQUBE_URL', value: 'https://sonarqube-prc-tools.pathfinder.gov.bc.ca')
]
)
]) {
node(sonarqubePodLabel) {
stage('checkout code') {
checkout scm
}
stage('exeucte sonar') {
dir('sonar-runner') {
try {
sh './gradlew sonarqube -Dsonar.host.url=https://sonarqube-prc-tools.pathfinder.gov.bc.ca -Dsonar.verbose=true --stacktrace --info'
} finally {
}
}
}
}
}
pipeline {
agent any
options {
skipDefaultCheckout()
}
stages {
stage('Building: nrts-prc-api master branch') {
steps {
script {
try {
echo "Building: ${env.JOB_NAME} #${env.BUILD_ID}"
notifyBuild("Building: ${env.JOB_NAME} #${env.BUILD_ID}", "YELLOW")
openshiftBuild bldCfg: 'nrts-prc-api-master', showBuildLogs: 'true'
} catch (e) {
notifyBuild("BUILD ${env.JOB_NAME} #${env.BUILD_ID} ABORTED", "RED")
error('Stopping early…')
}
}
}
}
}
}
def notifyBuild(String msg = '', String colour = 'GREEN') {
if (colour == 'YELLOW') {
colorCode = '#FFFF00'
} else if (colour == 'GREEN') {
colorCode = '#00FF00'
} else {
colorCode = '#FF0000'
}
// Send notifications
slackSend (color: colorCode, message: msg)
}