aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-05-16 15:35:08 +0300
committerIgor Gnatenko <i.gnatenko.brain@gmail.com>2015-05-16 15:35:08 +0300
commit88d5eec9e744378c745b8c751139f4836d476312 (patch)
tree0a536fc46bb0ffe63cec6843cab995aa5608df4d
parent64f2b4b3def020792a9a4d40622eb70cc674e73a (diff)
downloadmeson-88d5eec9e744378c745b8c751139f4836d476312.zip
meson-88d5eec9e744378c745b8c751139f4836d476312.tar.gz
meson-88d5eec9e744378c745b8c751139f4836d476312.tar.bz2
Provide jenkins-job-builder yaml for meson
Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
-rw-r--r--jjb-meson.yaml60
1 files changed, 60 insertions, 0 deletions
diff --git a/jjb-meson.yaml b/jjb-meson.yaml
new file mode 100644
index 0000000..dd5d34e
--- /dev/null
+++ b/jjb-meson.yaml
@@ -0,0 +1,60 @@
+- scm:
+ name: meson
+ scm:
+ - git:
+ url: https://github.com/jpakkane/meson
+ branches:
+ - origin/master
+
+- scm:
+ name: meson-request
+ scm:
+ - git:
+ url: https://github.com/jpakkane/meson
+ refspec: +refs/pull/*:refs/remotes/origin/pr/*
+ branches:
+ - ${sha1}
+
+- job:
+ name: 'meson'
+ properties:
+ - github:
+ url: https://github.com/jpakkane/meson/
+ scm:
+ - meson
+ triggers:
+ - github
+ builders:
+ - shell: "./run_tests.py"
+ publishers:
+ - junit:
+ results: meson-test-run.xml
+ - github-notifier
+ - email:
+ recipients: i.gnatenko.brain@gmail.com jpakkane@gmail.com
+
+- job:
+ name: 'meson-request'
+ properties:
+ - github:
+ url: https://github.com/jpakkane/meson/
+ parameters:
+ - string:
+ name: ${sha1}
+ scm:
+ - meson-request
+ triggers:
+ - github-pull-request:
+ admin-list:
+ - jpakkane
+ - ignatenkobrain
+ github-hooks: true
+ permit-all: true
+ builders:
+ - shell: "./run_tests.py"
+ publishers:
+ - junit:
+ results: meson-test-run.xml
+ - github-notifier
+ - email:
+ recipients: i.gnatenko.brain@gmail.com jpakkane@gmail.com