This repository has been archived by the owner on Nov 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 66
/
SonarQube-Jenkinsfile
113 lines (96 loc) · 3.92 KB
/
SonarQube-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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// ================================================================================================
// SonarQube Scanner Settings
// ------------------------------------------------------------------------------------------------
// The name of the SonarQube route. Used to dynamically get the URL for SonarQube.
def SONAR_ROUTE_NAME = 'sonarqube'
// The name of your SonarQube project
def SONAR_PROJECT_NAME = 'TheOrgBook'
// The project key of your SonarQube project
def SONAR_PROJECT_KEY = 'TheOrgBook'
// The base directory of your project.
// This is relative to the location of the `sonar-runner` directory within your project.
// More accurately this is relative to the Gradle build script(s) that manage the SonarQube Scanning
def SONAR_PROJECT_BASE_DIR = '../'
// The source code directory you want to scan.
// This is relative to the project base directory.
def SONAR_SOURCES = './'
// ================================================================================================
@NonCPS
String getUrlForRoute(String routeName, String projectNameSpace = '') {
def nameSpaceFlag = ''
if(projectNameSpace?.trim()) {
nameSpaceFlag = "-n ${projectNameSpace}"
}
def url = sh (
script: "oc get routes ${nameSpaceFlag} -o wide --no-headers | awk \'/${routeName}/{ print match(\$0,/edge/) ? \"https://\"\$2 : \"http://\"\$2 }\'",
returnStdout: true
).trim()
return url
}
@NonCPS
String getSonarQubePwd() {
sonarQubePwd = sh (
script: 'oc env dc/sonarqube --list | awk -F "=" \'/SONARQUBE_ADMINPW/{print $2}\'',
returnStdout: true
).trim()
return sonarQubePwd
}
// The jenkins-python3nodejs template has been purpose built for supporting SonarQube scanning.
podTemplate(
label: 'jenkins-python3nodejs',
name: 'jenkins-python3nodejs',
serviceAccount: 'jenkins',
cloud: 'openshift',
containers: [
containerTemplate(
name: 'jnlp',
image: '172.50.0.2:5000/openshift/jenkins-slave-python3nodejs',
resourceRequestCpu: '1000m',
resourceLimitCpu: '2000m',
resourceRequestMemory: '2Gi',
resourceLimitMemory: '4Gi',
workingDir: '/tmp',
command: '',
args: '${computer.jnlpmac} ${computer.name}'
)
]
){
node('jenkins-python3nodejs') {
stage('Checkout Source') {
echo "Checking out source code ..."
checkout scm
}
stage('SonarQube Analysis') {
echo "Performing static SonarQube code analysis ..."
SONARQUBE_URL = getUrlForRoute(SONAR_ROUTE_NAME).trim()
SONARQUBE_PWD = getSonarQubePwd().trim()
echo "URL: ${SONARQUBE_URL}"
echo "PWD: ${SONARQUBE_PWD}"
// The `sonar-runner` MUST exist in your project and contain a Gradle environment consisting of:
// - Gradle wrapper script(s)
// - A simple `build.gradle` file that includes the SonarQube plug-in.
//
// An example can be found here:
// - https://github.com/BCDevOps/sonarqube
dir('sonar-runner') {
// ======================================================================================================
// Set your SonarQube scanner properties at this level, not at the Gradle Build level.
// The only thing that should be defined at the Gradle Build level is a minimal set of generic defaults.
//
// For more information on available properties visit:
// - https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+Gradle
// ======================================================================================================
sh (
returnStdout: true,
script: "./gradlew sonarqube --stacktrace --info \
-Dsonar.verbose=true \
-Dsonar.host.url=${SONARQUBE_URL} \
-Dsonar.projectName=${SONAR_PROJECT_NAME} \
-Dsonar.projectKey=${SONAR_PROJECT_KEY} \
-Dsonar.projectBaseDir=${SONAR_PROJECT_BASE_DIR} \
-Dsonar.sources=${SONAR_SOURCES}"
)
}
}
}
}