137 lines
5.0 KiB
Groovy
137 lines
5.0 KiB
Groovy
#!groovy
|
|
|
|
def label = "jenkins-${UUID.randomUUID().toString()}"
|
|
def repository = "registry.c.test-chamber-13.lan"
|
|
def templateName = "pipeline-worker"
|
|
podTemplate(
|
|
label: label,
|
|
name: templateName,
|
|
yaml: functions.podYaml(
|
|
repo: repository,
|
|
templateName: templateName,
|
|
alpine: true,
|
|
[
|
|
[
|
|
name: "sonar",
|
|
path: "${repository}/library/sonarscanner:latest",
|
|
command: "/bin/sh"
|
|
],
|
|
[
|
|
name: "golang-alpine",
|
|
path: "${repository}/dockerhub/library/golang:alpine",
|
|
command: "/bin/sh"
|
|
],
|
|
[
|
|
name: "golang-ubuntu",
|
|
path: "${repository}/dockerhub/library/golang:latest",
|
|
command: "/bin/sh"
|
|
]
|
|
]
|
|
)
|
|
) {
|
|
node (label) {
|
|
def workspace = pwd()
|
|
|
|
def shortCommit
|
|
stage('Clone Repository') {
|
|
checkout ([$class: "GitSCM",
|
|
branches: scm.branches,
|
|
extensions: scm.extensions + [$class: 'CloneOption', shallow: true],
|
|
userRemoteConfigs: scm.userRemoteConfigs,
|
|
])
|
|
shortCommit = sh(returnStdout: true, script: "git log -n 1 --pretty=format:'%h'").trim()
|
|
}
|
|
|
|
stage('Run Tests') {
|
|
container('golang-alpine') {
|
|
writeFile(file: workspace + "/test-chamber-13.lan.root.crt", text: functions.getLocalRootCA())
|
|
sh """
|
|
if [ ! "/usr/bin/curl" ] || [ ! -x "/usr/bin/curl" ]; then
|
|
apk add --no-cache curl
|
|
fi
|
|
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
|
|
apk add --no-cache git
|
|
git config --global --add safe.directory '${workspace}'
|
|
fi
|
|
apk add --no-cache libusb-dev gcc g++ musl-dev pkgconfig
|
|
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 \
|
|
| tar -z -x -f - -C /usr/local/bin
|
|
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
|
|
cd "/go/src/${env.JOB_BASE_NAME}"
|
|
go get -d -v ./...
|
|
go install -v ./...
|
|
go test -short -coverprofile=cover.out ./...
|
|
go test -v ./... 2>&1 | go-junit-report > report.xml
|
|
"""
|
|
}
|
|
}
|
|
|
|
stage('Prepare SonarScanner') {
|
|
def sonarScannerConfig = """
|
|
sonar.projectKey=${env.JOB_BASE_NAME.replace(" ", "-")}
|
|
sonar.projectVersion=${shortCommit}
|
|
sonar.sources=.
|
|
sonar.exclusions=**/*_test.go,**/vendor/**,**/testdata/*
|
|
sonar.tests=.
|
|
sonar.test.inclusions=**/*_test.go
|
|
sonar.test.exclusions=**/vendor/**
|
|
sonar.go.coverage.reportPaths=cover.out
|
|
"""
|
|
writeFile file: 'sonar-project.properties', text: sonarScannerConfig
|
|
}
|
|
|
|
stage('SonarQube Analysis') {
|
|
container('sonar') {
|
|
withSonarQubeEnv('SonarQube') {
|
|
sh "sonar-scanner --define sonar.host.url=https://sonar.c.test-chamber-13.lan"
|
|
}
|
|
}
|
|
}
|
|
|
|
stage("Build go-temper") {
|
|
container("golang-ubuntu") {
|
|
sh """
|
|
apt-get update
|
|
apt-get install --yes --no-install-recommends libusb-1.0-0-dev gcc g++
|
|
if [ ! "/usr/bin/git" ] || [ ! -x "/usr/bin/git" ]; then
|
|
apt-get install --yes --no-install-recommends git
|
|
git config --global --add safe.directory "/go/src/${env.JOB_BASE_NAME}"
|
|
fi
|
|
ln -s "${workspace}" "/go/src/${env.JOB_BASE_NAME}"
|
|
cd "/go/src/${env.JOB_BASE_NAME}"
|
|
go install -v ./...
|
|
GOOS=linux GOARCH=amd64 go build -v -ldflags="-s -w" -tags timetzdata -o go-temper ./cmd/go-temper
|
|
"""
|
|
}
|
|
}
|
|
|
|
stage ("Store Artifacts") {
|
|
archiveArtifacts (artifacts: "go-temper",
|
|
fingerprint: true,
|
|
allowEmptyArchive: false,
|
|
onlyIfSuccessful: true,
|
|
)
|
|
}
|
|
|
|
stage ('Push Artifacts') {
|
|
container('alpine') {
|
|
functions.pushArtifact(
|
|
repoCreds: "nexus-generic-upload-bot",
|
|
fileName: "go-temper",
|
|
filePath: workspace + "/",
|
|
fileURL: "https://nexus.c.test-chamber-13.lan/repository/generic/go/"
|
|
)
|
|
}
|
|
}
|
|
|
|
stage('Submit Testing Report to Jenkins') {
|
|
catchError{
|
|
junit 'report.xml'
|
|
}
|
|
}
|
|
}
|
|
} |