Compare commits

..

2 commits

Author SHA1 Message Date
d23ea6aa99 Update the package database first 2020-11-22 21:57:48 -08:00
c23ba70d5d Add Jenkinsfile 2020-11-22 21:36:39 -08:00

17
Jenkinsfile vendored Normal file
View file

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