diff options
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', |