aboutsummaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot')
-rw-r--r--buildbot/master.cfg18
1 files changed, 8 insertions, 10 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index c2fa685..a572171 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -952,22 +952,20 @@ WORKERS.append(worker.Worker("taler-demo-healthcheck", "taler-demo-healthcheck-p
TALER_DEMO_HEALTHCHECK_FACTORY = create_factory_with_deployment()
TALER_DEMO_HEALTHCHECK_FACTORY.addStep(git_step("git://git.taler.net/wallet-core.git"))
-TALER_DEMO_HEALTHCHECK_FACTORY.addStep(
- ShellCommand(
- name="fetch",
- description="Running yarn install",
- descriptionDone="Correctly installed",
- command=["npm", "install", "-g", "--prefix", "$HOME", "@gnu-taler/taler-wallet-cli"],
- workdir="build/"
- )
-)
+# For the moment, the health-check uses whatever wallet
+# was (possibly manually) installed beforehand. Eventually
+# (FIXME) the wallet installation should be automated.
TALER_DEMO_HEALTHCHECK_FACTORY.addStep(
ShellCommand(
name="test-withdraw-and-spend",
description="Running wallet spend tests",
descriptionDone="Test correctly run",
- command=["./$HOME/bin/taler-wallet-cli", "testing", "run-integrationtests", "payment-demo"],
+ command=["./$HOME/local/bin/taler-wallet-cli",
+ "testing",
+ "run-integrationtests",
+ "payment-demo"
+ ],
workdir="build/",
)
)