You've already forked OpenIntegrations
mirror of
https://github.com/Bayselonarrend/OpenIntegrations.git
synced 2025-10-08 22:51:57 +02:00
13 lines
466 B
Plaintext
Vendored
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"'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |