1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-10-08 22:51:57 +02:00
Files
OpenIntegrations/ci/sonar
2025-07-11 09:34:33 +03:00

13 lines
466 B
Plaintext
Vendored

pipeline {
agent any
stages {
stage('Scan') {
steps {
withCredentials([string(credentialsId: 'Sonar', variable: 'LOGIN')]) {
bat 'call cd ./src/ru/OPI && sonar-scanner -D"sonar.projectKey=OpenIntegrations" -D"sonar.host.url=http://localhost:32772" -D"sonar.token=%LOGIN%" -D"sonar.sourceEncoding=UTF-8" -D"sonar.inclusions=**/*.bsl"'
}
}
}
}
}