16 lines
303 B
Groovy
16 lines
303 B
Groovy
pipeline {
|
|
agent {
|
|
docker {
|
|
image 'archlinux:base-devel'
|
|
}
|
|
}
|
|
|
|
stages {
|
|
stage('Package') {
|
|
steps {
|
|
sh 'makepkg -c'
|
|
archiveArtifacts artifacts: 'cgit-pygments-wrapper-*-.pkg.tar.*'
|
|
}
|
|
}
|
|
}
|
|
}
|