debug: 去除 Jenkinsfile

This commit is contained in:
筱锋xiao_lfeng 2024-04-09 20:50:55 +08:00
parent b48d89f22e
commit c324ce2bca
No known key found for this signature in database
GPG Key ID: F693AA12AABBFA87

24
Jenkinsfile vendored
View File

@ -1,24 +0,0 @@
pipeline {
environment {
QODANA_TOKEN=credentials('qodana-token')
}
agent {
docker {
args '''
-v "${WORKSPACE}":/data/project
--entrypoint=""
'''
image 'jetbrains/qodana-jvm'
}
}
stages {
stage('Qodana') {
when {
branch 'feature'
}
steps {
sh '''qodana'''
}
}
}
}