summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/master.cfg')
-rw-r--r--buildbot/master.cfg41
1 files changed, 4 insertions, 37 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 24f5483..1e53163 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -670,16 +670,18 @@ WALLET_FACTORY.addStep(
haltOnFailure=True
)
)
+
WALLET_FACTORY.addStep(
ShellCommand(
name="test",
description="Running wallet tests",
descriptionDone="Test correctly run",
command=["timeout", "--preserve-status", "5m",
+ "docker", "run", "-i", "-t", "taler_local/taler_base",
"taler-wallet-cli", "testing", "run-integrationtests",
"--suites", "wallet,merchant,libeufin,wallet-backup,wallet-tipping"],
workdir="../../",
- env={'PATH': "${HOME}/local/bin:${PATH}"}
+ env={'PATH': "${HOME}/bin:${PATH}"}
)
)
@@ -1002,20 +1004,8 @@ BUILD_FACTORY.addStep(
BUILD_FACTORY.addStep(
ShellCommand(
- name="keys generation and sign",
- description="Generating exchange keys, and auditor-sign them.",
- descriptionDone="Exchange keys generated, and auditor-signed.",
- command=["timeout", "--preserve-status", "1m",
- "./keys.sh"],
- workdir="../../deployment/buildbot",
- haltOnFailure=True,
- env={'BRANCH': util.Property("branch")}
- )
-)
-BUILD_FACTORY.addStep(
- ShellCommand(
name="restart services",
- description="Restarting inactive blue-green party.",
+ description="Restart services keeping data.",
descriptionDone="Restarting Taler.",
command=["./restart.sh"],
workdir="../../deployment/buildbot",
@@ -1034,29 +1024,6 @@ BUILD_FACTORY.addStep(
env={'DEPLOYMENT': "test"}
)
)
-BUILD_FACTORY.addStep(
- ShellCommand(
- name="create instances",
- description="Create merchant instances.",
- descriptionDone="All the instances got created.",
- command=["./create_instances.sh"],
- workdir="../../deployment/buildbot",
- haltOnFailure=True,
- env={'DEPLOYMENT': "test"}
- )
-)
-
-BUILD_FACTORY.addStep(
- ShellCommand(
- name="activate tip reserve",
- description="Instruct the merchant to pay and authorize the tip reserve.",
- descriptionDone="The tip reserve got payed and authorized.",
- command=["./create_tip_reserve.sh"],
- workdir="../../deployment/buildbot",
- haltOnFailure=True,
- env={'DEPLOYMENT': "test"}
- )
-)
BUILDERS.append(util.BuilderConfig(
name="test-builder", workernames=["test-worker"], factory=BUILD_FACTORY