Some checks failed
Anthrove/Otter-Space-SDK/pipeline/head There was a failure building this commit
34 lines
778 B
Groovy
34 lines
778 B
Groovy
pipeline {
|
|
agent {
|
|
docker { image 'docker:dind' }
|
|
}
|
|
tools {
|
|
dockerTool 'Docker'
|
|
}
|
|
stages {
|
|
stage('Checkout') {
|
|
steps {
|
|
checkout scm
|
|
}
|
|
}
|
|
stage('Go Test') {
|
|
agent {
|
|
docker { image 'golang:1.22-alpine' }
|
|
}
|
|
steps {
|
|
sh 'go test -v ./... -json -coverprofile=coverage.out > test-report.out'
|
|
}
|
|
}
|
|
stage('SonarQube Analysis') {
|
|
agent {
|
|
docker { image 'amazoncorretto:22-alpine' }
|
|
}
|
|
def scannerHome = tool 'SonarScanner'
|
|
withSonarQubeEnv() {
|
|
sh "${scannerHome}/bin/sonar-scanner"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|