new-ryuslash.org/Jenkinsfile

56 lines
1.4 KiB
Text
Raw Normal View History

2020-10-10 07:15:24 +02:00
pipeline {
agent any
options {
preserveStashes()
}
2020-10-10 07:15:24 +02:00
stages {
stage('Build') {
parallel {
stage('HTML') {
agent {
docker {
image 'silex/emacs:27.1-alpine-dev'
args '-u root --privileged'
}
}
steps {
sh 'cask'
sh 'make html'
stash includes: 'public/**', name: 'public_html'
}
}
stage('CSS') {
agent { dockerfile true }
steps {
sh 'make css'
stash includes: 'public/**', name: 'public_css'
}
}
}
2020-09-21 10:44:42 +02:00
}
2020-10-10 07:15:24 +02:00
stage('Deploy') {
agent {
docker {
image 'instrumentisto/rsync-ssh'
args '-u root --privileged'
}
}
steps {
unstash 'public_html'
unstash 'public_css'
2020-09-21 10:44:42 +02:00
withCredentials([file(credentialsId: 'ryuslash.org-deploy-key', variable: 'KEY_FILE')]) {
sh 'rsync -e "ssh -p 4511 -i $KEY_FILE" -v -c -r --delete public/ "site@ryuslash.org:public_html/"'
}
2020-09-21 10:44:42 +02:00
}
}
}
}