PersonalMain-Golang/Jenkinsfile
XiaoLFeng e8e6da39c0
Some checks failed
Personal/PersonalMain-Golang/pipeline/head There was a failure building this commit
patch: waterfall
2024-01-31 14:36:45 +08:00

24 lines
510 B
Go

pipeline {
environment {
QODANA_TOKEN=credentials('qodana-token')
}
agent {
label '本地'
}
stages {
stage('Qodana代码分析') {
steps {
script {
docker.image(jetbrains/qodana-go).run('''
--v "${WORKSPACE}":/data/project
--entrypoint=""
''') {
sh '''qodana'''
}
}
}
}
}
}