Add Jenkinsfile

This commit is contained in:
Tom Willemse 2020-09-21 01:44:42 -07:00
parent 2620ee69bf
commit 6dbbe818ca

22
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,22 @@
def dockerImage = 'silex/emacs:27.1-alpine-dev'
node('docker') {
checkout scm
stage('Build') {
docker.image(dockerImage).inside {
sh 'make'
stash includes: 'public/*', name: 'public_html'
}
}
stage('Deploy') {
docker.image('instrumentisto/rsync-ssh').inside {
unstash 'public_html'
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:"'
}
}
}
}