summaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
blob: 807fd3705900d7ec31a1e71a139794f59a048fcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pipeline {
    agent {
        docker {
            image 'archlinux:base-devel'
        }
    }

    stages {
        stage('Package') {
            steps {
                sh 'makepkg -c'
                archiveArtifacts artifacts: 'cgit-pygments-wrapper-*-.pkg.tar.*'
            }
        }
    }
}