mirror of
				https://github.com/simon987/dataarchivist.net.git
				synced 2025-10-30 12:26:52 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| def remote = [:]
 | |
| remote.name = 'remote'
 | |
| remote.host = env.DEPLOY_HOST
 | |
| remote.user = env.DEPLOY_USER
 | |
| remote.identityFile = '/var/lib/jenkins/.ssh/id_rsa'
 | |
| remote.knownHosts = '/var/lib/jenkins/.ssh/known_hosts'
 | |
| remote.allowAnyHosts = true
 | |
| remote.retryCount = 3
 | |
| remote.retryWaitSec = 3
 | |
| logLevel = 'FINER'
 | |
| remote.port = 2299
 | |
| 
 | |
| pipeline {
 | |
|     agent none
 | |
|     environment {
 | |
|         HOME='.'
 | |
|     }
 | |
|     stages {
 | |
|         stage('Build') {
 | |
|             steps {
 | |
|                 node('master') {
 | |
|                     checkout scm
 | |
|                     sh 'git submodule init && git submodule update --remote'
 | |
|                     sh 'hugo && mv public/ webroot/'
 | |
|                     stash includes: 'webroot/', name: 'webdist'
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|             
 | |
|         stage('Deploy') {
 | |
|             steps {
 | |
|                 node('master') {
 | |
|                     unstash 'webdist'
 | |
|                     sshCommand remote: remote, command: "cd 'dataarchivist.net' && rm -rf webroot/*"
 | |
|                     sshPut remote: remote, from: 'webroot/', into: 'dataarchivist.net'
 | |
|                     sshCommand remote: remote, command: 'chmod -R 755 dataarchivist.net/webroot/'
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 |