Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Commit

Permalink
Added builder for datatools
Browse files Browse the repository at this point in the history
  • Loading branch information
cstawarz committed Feb 18, 2010
1 parent c857264 commit d540c28
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions buildbot_master/plugins/dicarlolab_plugins.py
Expand Up @@ -86,6 +86,31 @@ def get_plugins(**kwargs):
}

builders.append(client_plugins_builder)


# ========================
# Data Tools
# ========================

builder_name = "datatools"
datatools_scheduler = Triggerable(name=builder_name, builderNames=[builder_name])

schedulers.append(datatools_scheduler)

datatools_factory = factory.BuildFactory();
datatools_factory.addStep(source.Git(repository_base_url + "mw_datatools.git", current_branch, mode=checkout_type))
datatools_factory.addStep(shell.ShellCommand(command=["make", "all"],
descriptionDone=["built"],
description=["building"]))


datatools_builder = {'name': builder_name,
'slavename': standard_mac_arch,
'builddir': builder_name,
'factory': datatools_factory,
}

builders.append(datatools_builder)


return (schedulers, builders)

0 comments on commit d540c28

Please sign in to comment.