Compare commits

..

No commits in common. "jenkins" and "master" have entirely different histories.

17
Jenkinsfile vendored
View file

@ -1,17 +0,0 @@
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.*'
}
}
}
}