mirror of
				https://github.com/scm-manager/scm-manager.git
				synced 2025-10-31 02:25:53 +01:00 
			
		
		
		
	Add Jenkinsfile
This commit is contained in:
		
							
								
								
									
										40
									
								
								Jenkinsfile
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										40
									
								
								Jenkinsfile
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,40 @@ | ||||
| #!groovy | ||||
| @Library('github.com/cloudogu/ces-build-lib@ac17d45') | ||||
| import com.cloudogu.ces.cesbuildlib.* | ||||
|  | ||||
| node() { // No specific label | ||||
|  | ||||
|     properties([ | ||||
|             // Keep only the last 10 build to preserve space | ||||
|             buildDiscarder(logRotator(numToKeepStr: '10')), | ||||
|             // Don't run concurrent builds for a branch, because they use the same workspace directory | ||||
|             disableConcurrentBuilds() | ||||
|     ]) | ||||
|  | ||||
|     String defaultEmailRecipients = env.EMAIL_RECIPIENTS | ||||
|  | ||||
|     catchError { | ||||
|  | ||||
|         Maven mvn = new MavenWrapper(this) | ||||
|  | ||||
|         stage('Build') { | ||||
|             mvn 'clean install -DskipTests' | ||||
|             archive '**/target/*.jar,**/target/*.zip' | ||||
|         } | ||||
|  | ||||
|         stage('Unit Test') { | ||||
|             mvn 'test' | ||||
|         } | ||||
|  | ||||
|         stage('SonarQube') { | ||||
|             def sonarQube = new SonarQube(this, 'ces-sonar') | ||||
|  | ||||
|             sonarQube.analyzeWith(mvn) | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     // Archive Unit and integration test results, if any | ||||
|     junit allowEmptyResults: true, testResults: '**/target/failsafe-reports/TEST-*.xml,**/target/surefire-reports/TEST-*.xml,**/target/jest-reports/TEST-*.xml' | ||||
|  | ||||
|     mailIfStatusChanged(findEmailRecipients(defaultEmailRecipients)) | ||||
| } | ||||
		Reference in New Issue
	
	Block a user