summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..807fd37
--- /dev/null
+++ b/Jenkinsfile
@@ -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.*'
+ }
+ }
+ }
+}