| 
					
				 | 
			
			
				@@ -4,17 +4,19 @@ pipeline{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		pollSCM('H * * * *') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		cron('H H H * *') 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-	stages{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        stage('Build') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-			steps { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-				script { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-					docker.withRegistry('https://docker.snppla.net', 'nexus_push'){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-						def customImage = docker.build("docker.snppla.net/snppla/gogs-docker:${env.GIT_BRANCH}", "--pull ./") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-						customImage.push() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+	node('docker'){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+		stages{ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+			stage('Build') { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+				steps { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+					script { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+						docker.withRegistry('https://docker.snppla.net', 'nexus_push'){ 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+							def customImage = docker.build("docker.snppla.net/snppla/gogs-docker:${env.GIT_BRANCH}", "--pull ./") 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+							customImage.push() 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+						} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 					} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 				} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 			} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-        } 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+		} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	} 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 	post { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				 		success{ 
			 |