Some checks failed
		
		
	
	FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
				
			
		
			
				
	
	
		
			24 lines
		
	
	
		
			393 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			393 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| @Library('farmmaps-shared-library') _
 | |
| 
 | |
| pipeline {
 | |
|   agent any;
 | |
|   options {
 | |
|     copyArtifactPermission projectNames: env.allProjectsArtifactPermission;
 | |
|     disableConcurrentBuilds();
 | |
|   }
 | |
|   stages {
 | |
|     stage('FarmmapsLibBuildAll') {
 | |
|       steps {
 | |
|         stepFarmmapsLibBuildAll();
 | |
|       }
 | |
|     }
 | |
|   }
 | |
|   post {
 | |
|     success {
 | |
|       postSuccess();
 | |
|     }
 | |
|     always {
 | |
|       postAlways();
 | |
|     }
 | |
|   }
 | |
| } |