You've already forked OpenIntegrations
							
							
				mirror of
				https://github.com/Bayselonarrend/OpenIntegrations.git
				synced 2025-10-30 23:47:46 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			717 B
		
	
	
	
		
			Plaintext
		
	
	
	
		
			Vendored
		
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			717 B
		
	
	
	
		
			Plaintext
		
	
	
	
		
			Vendored
		
	
	
	
| pipeline {
 | |
|     agent any
 | |
|     stages {
 | |
| 
 | |
|         stage('Scan') {
 | |
|             steps {                  
 | |
|                 withCredentials([string(credentialsId: 'Sonar', variable: 'LOGIN')]) {
 | |
|                     bat 'call cd ./src/ru/OInt & "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"'
 | |
|                     bat 'call cd ./src/ru/OPI & "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"'
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| } |