JSL_OrganizeInternalOA/Jenkinsfile
XiaoLFeng 0e5b1f3683
Some checks failed
JslDeveloper/JSL_OrganizeInternalOA/pipeline/head There was a failure building this commit
Waterfall
2024-01-29 11:49:26 +08:00

24 lines
628 B
Groovy

pipeline {
environment {
QODANA_TOKEN = credentials('eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJvcmdhbml6YXRpb24iOiJwNTZYRyIsInByb2plY3QiOiIzd1JQNyIsInRva2VuIjoiMzdiYmIifQ.neuOR5TzO3GpuexxQT4SM-5N4BxF5aRxujtyRpDpTB0')
}
agent {
docker {
args '''
-v "${WORKSPACE}":/data/project
--entrypoint=""
'''
image 'jetbrains/qodana-jvm'
}
}
stages {
stage('Qodana') {
when {
branch 'feature'
}
steps {
sh '''qodana'''
}
}
}
}