aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: 86307c259ab58b62c8585b23615b0a625e1c6813 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
pipeline {
    agent none

    options {
        preserveStashes()
    }

    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'
                    }
                }
            }
        }

        stage('Deploy') {
            agent {
                docker {
                    image 'instrumentisto/rsync-ssh'
                    args '-u root --privileged'
                }
            }

            steps {
                unstash 'public_html'
                unstash 'public_css'

                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/"'
                }
            }
        }
    }
}