From: Mathias Klette Date: Tue, 28 May 2013 15:41:22 +0000 (+0200) Subject: debian_build: accept integration jobs for experimental branches X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=f6d354efefee208e74c425dc9a9b44c09c4186fb;p=profitbricks%2Fjenkins-build-scripts.git debian_build: accept integration jobs for experimental branches --- diff --git a/debian_build.py b/debian_build.py index 484488d..261a61b 100755 --- a/debian_build.py +++ b/debian_build.py @@ -210,7 +210,7 @@ if __name__ == '__main__': do_cidb = True elif re.match(EXPERIMENTAL_BRANCHES_RE, ENV['GIT_BRANCH']): - if not re.match('^dev_.*$', ENV['JOB_NAME']): + if not re.match('^(dev_|integration_).*$', ENV['JOB_NAME']): logger.error('Use the appropriate job to build for branch "{branch}"!'.format( branch=local_branch, ))