diff options
author | jpakkane <jpakkane@gmail.com> | 2015-05-17 00:09:29 +0300 |
---|---|---|
committer | jpakkane <jpakkane@gmail.com> | 2015-05-17 00:09:29 +0300 |
commit | 07825428cfa7709d996fb66ced86ef2de4501082 (patch) | |
tree | f7a57ecc3715f244ae4ebf14e88e5dc90f59e391 | |
parent | 1ef958288c9b66b9d67e9d977fb88c7a90396744 (diff) | |
parent | 88d5eec9e744378c745b8c751139f4836d476312 (diff) | |
download | meson-07825428cfa7709d996fb66ced86ef2de4501082.zip meson-07825428cfa7709d996fb66ced86ef2de4501082.tar.gz meson-07825428cfa7709d996fb66ced86ef2de4501082.tar.bz2 |
Merge pull request #116 from ignatenkobrain/jjb
Provide jenkins-job-builder yaml for meson
-rw-r--r-- | jjb-meson.yaml | 60 |
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 |