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

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'''
}
}
}
}