Add Jenkinsfile

This commit is contained in:
Tom Willemse 2020-11-22 21:36:39 -08:00
parent ea6a9994bf
commit c23ba70d5d

16
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,16 @@
pipeline {
agent {
docker {
image 'archlinux:base-devel'
}
}
stages {
stage('Package') {
steps {
sh 'makepkg -c'
archiveArtifacts artifacts: 'cgit-pygments-wrapper-*-.pkg.tar.*'
}
}
}
}