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

13
Jenkinsfile vendored
View File

@ -62,6 +62,7 @@ podTemplate(
node (label) {
def workspace = pwd()
def shortCommit
stage('Clone Repository') {
checkout ([$class: "GitSCM",
branches: scm.branches,
@ -80,10 +81,10 @@ podTemplate(
fi
apk add --no-cache curl gcc musl-dev
curl \
--silent \
--location \
--cacert "${workspace}/test-chamber-13.lan.root.crt" \
https://nexus.c.test-chamber-13.lan/repository/github-releases/jstemmer/go-junit-report/releases/download/v1.0.0/go-junit-report-v1.0.0-linux-amd64.tar.gz \
--silent \
--location \
--cacert "${workspace}/test-chamber-13.lan.root.crt" \
https://nexus.c.test-chamber-13.lan/repository/github-releases/jstemmer/go-junit-report/releases/download/v1.0.0/go-junit-report-v1.0.0-linux-amd64.tar.gz \
| tar -z -x -f - -C /usr/local/bin
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
cd "/go/src/${env.JOB_BASE_NAME}"
@ -95,9 +96,9 @@ podTemplate(
}
}
stage('Prepare SonarScanner') {
stage('Prepare SonarScanner') {
def sonarScannerConfig = """
sonar.projectKey=emonesp-exporter
sonar.projectKey=${env.JOB_BASE_NAME.replace(" ", "-")}
sonar.projectVersion=${shortCommit}
sonar.sources=.
sonar.exclusions=**/*_test.go,**/vendor/**,**/testdata/*