diff options
author | Holger Levsen <holger@layer-acht.org> | 2012-11-03 19:41:47 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2012-11-03 19:41:47 +0100 |
commit | 3b7cb5845e04b46fadf07ab02609de1d9046448e (patch) | |
tree | 98ca3e0b5b6778283800257ad0e2cd7c2a18589a /job-cfg | |
parent | 85cb897d2cd66f5a5da61c4137504243da9099ff (diff) | |
download | jenkins.debian.net-3b7cb5845e04b46fadf07ab02609de1d9046448e.tar.xz |
initial configs
Diffstat (limited to 'job-cfg')
-rw-r--r-- | job-cfg/chroot-test.yaml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/job-cfg/chroot-test.yaml b/job-cfg/chroot-test.yaml new file mode 100644 index 00000000..788a97b0 --- /dev/null +++ b/job-cfg/chroot-test.yaml @@ -0,0 +1,41 @@ +- publisher: + name: parse-output + publishers: + - logparser: + rulespath: '/srv/jenkins/logparse/debian.rules' + unstable_on_warning: 'false' + fail_on_error: 'false' + +- job-template: + name: '{name}-sid_install_gnome' + description: '{description}{do_not_edit}' + publishers: + - parse-output + builders: + - shell: '/srv/jenkins/bin/chroot_tester.sh {chroot_tester_params}' + +- job-template: + name: '{name}-sid_bootstrap' + description: '{description}{do_not_edit}' + publishers: + - parse-output + - trigger: + project: '{name}-{trigger}' + builders: + - shell: '/srv/jenkins/bin/chroot_tester.sh {chroot_tester_params}' + +- project: + name: testjob_chroot-test + do_not_edit: '<br><br>Configured by <a href="http://jenkins.debian.net/userContent/about.html">jenkins-job-builder</a>, do not edit this job through the web UI.' + + jobs: + + - '{name}-sid_install_gnome': + chroot_tester_params: 'sid gnome' + description: 'Debootstrap sid, then install gnome.' + + - '{name}-sid_bootstrap': + chroot_tester_params: 'sid' + description: 'Debootstrap sid.' + trigger: 'sid_install_gnome' + |