Compare commits
2 commits
Author | SHA1 | Date | |
---|---|---|---|
d23ea6aa99 | |||
c23ba70d5d |
1 changed files with 17 additions and 0 deletions
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal 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.*'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue