Add Jenkinsfile
This commit is contained in:
parent
ea6a9994bf
commit
c23ba70d5d
1 changed files with 16 additions and 0 deletions
16
Jenkinsfile
vendored
Normal file
16
Jenkinsfile
vendored
Normal 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.*'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue