Test Jenkinsfile for building plate-tool-beta
	
		
			
	
		
	
	
		
			
				
	
				Gitea Scan/plate-tool/pipeline/head This commit looks good
				
					Details
				
			
		
	
				
					
				
			
				
	
				Gitea Scan/plate-tool/pipeline/head This commit looks good
				
					Details
				
			
		
	Hotfix #1 Hotfix #2 Hothix #4 Hotfix #5 Transfer & Deploy steps Hotfix #6 Hotfix #7 Hotfix #8
This commit is contained in:
		
							parent
							
								
									bce56be33e
								
							
						
					
					
						commit
						984bbda0c1
					
				| 
						 | 
					@ -0,0 +1,40 @@
 | 
				
			||||||
 | 
					pipeline {
 | 
				
			||||||
 | 
					    agent any
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    stages {
 | 
				
			||||||
 | 
					        stage('Build') {
 | 
				
			||||||
 | 
					            steps {
 | 
				
			||||||
 | 
					                sh '''
 | 
				
			||||||
 | 
					                    . "$HOME/.cargo/env"
 | 
				
			||||||
 | 
					                    trunk build --release --public-url "cool-stuff/plate-tool-beta/"
 | 
				
			||||||
 | 
					                '''
 | 
				
			||||||
 | 
					            }
 | 
				
			||||||
 | 
						    }
 | 
				
			||||||
 | 
						stage('Archive') {
 | 
				
			||||||
 | 
							steps {
 | 
				
			||||||
 | 
								zip zipFile: "dist.zip", archive: true, dir: "dist/"
 | 
				
			||||||
 | 
								archiveArtifacts artifacts: "dist.zip", fingerprint: true
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						stage('Transfer') {
 | 
				
			||||||
 | 
							steps {
 | 
				
			||||||
 | 
								sh 'echo "put -r dist/" | sftp oracle'
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
						stage('Deploy') {
 | 
				
			||||||
 | 
							steps {
 | 
				
			||||||
 | 
								sh '''
 | 
				
			||||||
 | 
								ssh oracle "sudo rm -rf /usr/share/nginx/html/plate-tool-beta/ && sudo mv dist /usr/share/nginx/html/plate-tool-beta"
 | 
				
			||||||
 | 
								'''
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					    post {
 | 
				
			||||||
 | 
						always {
 | 
				
			||||||
 | 
							cleanWs(notFailBuild: true,
 | 
				
			||||||
 | 
								deleteDirs: true,
 | 
				
			||||||
 | 
								cleanWhenNotBuilt: false,
 | 
				
			||||||
 | 
								patterns: [[pattern: 'target/', type: 'EXCLUDE']])
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
		Loading…
	
		Reference in New Issue