diff options
Diffstat (limited to 'job-cfg')
-rwxr-xr-x | job-cfg/rebootstrap.yaml.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/job-cfg/rebootstrap.yaml.py b/job-cfg/rebootstrap.yaml.py index da3bae3e..17a58721 100755 --- a/job-cfg/rebootstrap.yaml.py +++ b/job-cfg/rebootstrap.yaml.py @@ -78,7 +78,7 @@ print(""" branches: - '{my_branchname}' builders: - - shell: '{my_wrapper} LC_ALL=C /srv/jenkins/bin/chroot-run.sh sid minimal ./bootstrap.sh HOST_ARCH={my_arch} {my_params}' + - shell: '{my_wrapper} HOST_ARCH={my_arch} {my_params}' publishers: - logparser: parse-rules: '/srv/jenkins/logparse/rebootstrap.rules' @@ -142,4 +142,7 @@ for arch in sorted(architectures): debbindiff_comment=" showing debbindiffs" if debbindiff else "", node=get_node(arch))) if get_node(arch): - print(" my_wrapper: '/srv/jenkins/bin/reproducible_master_wrapper.sh'") + print(" my_wrapper: '/srv/jenkins/bin/jenkins_master_wrapper.sh'") + else: + print(" my_wrapper: 'LC_ALL=C /srv/jenkins/bin/chroot-run.sh sid minimal ./bootstrap.sh'") + |