corrects indenting and sonar project name
This commit is contained in:
parent
459086afc7
commit
4eeab203fd
13
Jenkinsfile
vendored
13
Jenkinsfile
vendored
@ -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,
|
||||||
@ -80,10 +81,10 @@ podTemplate(
|
|||||||
fi
|
fi
|
||||||
apk add --no-cache curl gcc musl-dev
|
apk add --no-cache curl gcc musl-dev
|
||||||
curl \
|
curl \
|
||||||
--silent \
|
--silent \
|
||||||
--location \
|
--location \
|
||||||
--cacert "${workspace}/test-chamber-13.lan.root.crt" \
|
--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 \
|
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
|
| tar -z -x -f - -C /usr/local/bin
|
||||||
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
|
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
|
||||||
cd "/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 = """
|
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/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user