summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMS <ms@taler.net>2020-11-16 17:57:12 +0100
committerMS <ms@taler.net>2020-11-16 17:57:12 +0100
commit583bbedc11b174ab2555b4559d1596f01c8473d2 (patch)
tree7c86378d9eb7587aac90ef552449e435ba2a4e1a
parent30b190fa849ddc97684b348659e7cca56ca5b185 (diff)
downloadlibeufin-deployment-583bbedc11b174ab2555b4559d1596f01c8473d2.tar.gz
libeufin-deployment-583bbedc11b174ab2555b4559d1596f01c8473d2.tar.bz2
libeufin-deployment-583bbedc11b174ab2555b4559d1596f01c8473d2.zip
adding bootstrap+configure to workers
-rw-r--r--buildbot/master.cfg16
1 files changed, 16 insertions, 0 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 93a8aee..f842556 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -73,9 +73,23 @@ c["schedulers"] = [
####### FACTORIES
+BOOTSTRAP_COMMAND = ShellCommand(
+ name="Bootstrap repository",
+ description="Bootstrap..",
+ descriptionDone="Bootstrap done",
+ command=["./bootstrap"]
+
+CONFIGURE_COMMAND = ShellCommand(
+ name="Configure project",
+ description="Configure..",
+ descriptionDone="Configure done",
+ command=["./configure"]
+
UNITTESTS_FACTORY = util.BuildFactory()
UNITTESTS_FACTORY.addSteps([
Git(repourl="git://git.taler.net/libeufin"),
+ BOOTSTRAP_COMMAND,
+ CONFIGURE_COMMAND,
ShellCommand(
name="Unit tests",
description="Running unit tests",
@@ -87,6 +101,8 @@ UNITTESTS_FACTORY.addSteps([
INTEGRATION_TESTS_FACTORY = util.BuildFactory()
INTEGRATION_TESTS_FACTORY.addSteps([
Git(repourl="git://git.taler.net/libeufin"),
+ BOOTSTRAP_COMMAND,
+ CONFIGURE_COMMAND,
ShellCommand(
name="Integration tests",
description="Running the integration tests",