diff options
author | Philip Hands <phil@hands.com> | 2016-06-14 21:51:51 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-06-16 22:33:02 +0200 |
commit | a578aa009ef4602d7ea92ea7640a501ac4eebb5a (patch) | |
tree | 55d0b4d4207ab010861a955bc6ba0e4372d459e5 | |
parent | bf3c31e0be7183bacdf3b914c4a56d39c5dce0f3 (diff) | |
download | jenkins.debian.net-a578aa009ef4602d7ea92ea7640a501ac4eebb5a.tar.xz |
d-i: trim jobs for testvm, and enable
Signed-off-by: Holger Levsen <holger@layer-acht.org>
l--------- | hosts/jenkins-test-vm/job-cfg/d-i.yaml.py | 1 | ||||
-rwxr-xr-x | job-cfg/d-i.yaml.py | 6 |
2 files changed, 7 insertions, 0 deletions
diff --git a/hosts/jenkins-test-vm/job-cfg/d-i.yaml.py b/hosts/jenkins-test-vm/job-cfg/d-i.yaml.py new file mode 120000 index 00000000..a7d9397a --- /dev/null +++ b/hosts/jenkins-test-vm/job-cfg/d-i.yaml.py @@ -0,0 +1 @@ +../../../job-cfg/d-i.yaml.py
\ No newline at end of file diff --git a/job-cfg/d-i.yaml.py b/job-cfg/d-i.yaml.py index 6c7df3fe..78fe0124 100755 --- a/job-cfg/d-i.yaml.py +++ b/job-cfg/d-i.yaml.py @@ -187,6 +187,10 @@ jobs = [ '{name}_pu-build-group', ] +if "jenkins-test-vm" == os.uname()[1]: + pkgs = [ 'debian-installer', 'preseed' ] + jobs = [ '{name}_build-group', '{name}_pu-build-group' ] + def scm_svn(po, inc_regs=None): if inc_regs is None: inc_regs = [ os.path.join('/trunk/manual/', @@ -460,6 +464,8 @@ data.append( 'trg': 'H/10 * * * *', 'pkg': pkgs}}) + + data.append( {'project': { 'name': 'd-i', |