XiaoLFeng
dab7ca0e3b
Some checks failed
Personal/PersonalMain-Golang/pipeline/head There was a failure building this commit
25 lines
547 B
Go
25 lines
547 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
|
|
-w /data/project
|
|
-entrypoint=""
|
|
''') {
|
|
sh '''qodana'''
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|