summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-07-30 10:17:45 +0200
committerParménides GV <parmegv@sdf.org>2015-07-30 10:17:45 +0200
commite05670bcfb8232f1e018f1c1726730b8ca7f9c0b (patch)
tree7cdea8ff1aad791b33d31ccda2d4b733a18fbab9
parent0aebcd379f789cc149e6b525c5e25f90f71b3dbe (diff)
Execute pkg/postmkvenv.sh in bitmask_client builder
-rw-r--r--master.cfg2
1 files changed, 2 insertions, 0 deletions
diff --git a/master.cfg b/master.cfg
index 496537e..bfcee78 100644
--- a/master.cfg
+++ b/master.cfg
@@ -96,6 +96,8 @@ def add_repo_to_factory(factory, repo_name, git_branch, namespace, venv_name):
Git(repourl=repo_url, branch=git_branch, workdir=workdir, mode='incremental', method='clean', haltOnFailure=True, name="Pull " + repo_url),
ShellCommand(command=['pep8', '--exclude=setup.py,versioneer.py,src._version', '--ignore=E501', '.'],env=sandbox_path,haltOnFailure=False, workdir=workdir, name="pep8 on " + repo_name)
])
+ if 'bitmask_client' in repo_name:
+ factory.addStep(ShellCommand(command='pkg/postmkvenv.sh',env=sandbox_path,haltOnFailure=False, workdir=workdir, name="postmkenv"))
if 'soledad.git' in repo_url:
for subpackage in ["common", "client", "server"]:
factory.addSteps([