XiaoLFeng
04e53f3740
Some checks failed
Personal/PersonalMain-Golang/pipeline/head There was a failure building this commit
22 lines
380 B
Go
22 lines
380 B
Go
pipeline {
|
|
environment {
|
|
QODANA_TOKEN=credentials('qodana-token')
|
|
}
|
|
agent {
|
|
label '本地'
|
|
docker {
|
|
args '''
|
|
-v "${WORKSPACE}":/data/project
|
|
--entrypoint=""
|
|
'''
|
|
image 'jetbrains/qodana-go'
|
|
}
|
|
}
|
|
stages {
|
|
stage('Qodana') {
|
|
steps {
|
|
sh '''qodana'''
|
|
}
|
|
}
|
|
}
|
|
} |