1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-03-17 21:08:03 +02:00

14 lines
662 B
Plaintext
Raw Normal View History

2024-10-06 21:55:32 +03:00
pipeline {
agent any
stages {
stage('Scan') {
steps {
2024-10-06 21:57:52 +03:00
withCredentials([string(credentialsId: 'Sonar', variable: 'LOGIN')]) {
bat 'call "C:/Program Files/sonar-scanner-5.0.1.3006-windows/bin/sonar-scanner.bat" -D"sonar.projectKey=OpenIntegrations" -D"sonar.login=%LOGIN%" -D"sonar.sourceEncoding=UTF-8" -D"sonar.inclusions=**/*.bsl"'
2024-10-06 22:09:17 +03:00
bat 'call "C:/Program Files/sonar-scanner-5.0.1.3006-windows/bin/sonar-scanner.bat" -D"sonar.projectKey=OInt" -D"sonar.login=%LOGIN%" -D"sonar.sourceEncoding=UTF-8" -D"sonar.inclusions=**/*.os"'
2024-10-06 21:57:52 +03:00
}
2024-10-06 21:55:32 +03:00
}
}
}
}