cgit-pygments-wrapper/Jenkinsfile

17 lines
303 B
Text
Raw Normal View History

2020-11-23 06:36:39 +01:00
pipeline {
agent {
docker {
image 'archlinux:base-devel'
}
}
stages {
stage('Package') {
steps {
sh 'makepkg -c'
archiveArtifacts artifacts: 'cgit-pygments-wrapper-*-.pkg.tar.*'
}
}
}
}