corrects indenting and sonar project name

This commit is contained in:
Hyatt 2022-03-17 10:40:58 -05:00
parent 459086afc7
commit 4eeab203fd
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

3
Jenkinsfile vendored
View File

@ -62,6 +62,7 @@ podTemplate(
node (label) { node (label) {
def workspace = pwd() def workspace = pwd()
def shortCommit
stage('Clone Repository') { stage('Clone Repository') {
checkout ([$class: "GitSCM", checkout ([$class: "GitSCM",
branches: scm.branches, branches: scm.branches,
@ -97,7 +98,7 @@ podTemplate(
stage('Prepare SonarScanner') { stage('Prepare SonarScanner') {
def sonarScannerConfig = """ def sonarScannerConfig = """
sonar.projectKey=emonesp-exporter sonar.projectKey=${env.JOB_BASE_NAME.replace(" ", "-")}
sonar.projectVersion=${shortCommit} sonar.projectVersion=${shortCommit}
sonar.sources=. sonar.sources=.
sonar.exclusions=**/*_test.go,**/vendor/**,**/testdata/* sonar.exclusions=**/*_test.go,**/vendor/**,**/testdata/*