summaryrefslogtreecommitdiff
path: root/buildbot/master.cfg
diff options
context:
space:
mode:
authorms <ms@taler.net>2021-07-09 13:24:37 +0200
committerms <ms@taler.net>2021-07-09 13:24:37 +0200
commit1ae26617ca68987aa5a6e1777fea2dc11edc2b9b (patch)
tree07be25e9d4849f79377d492b83179a01e37980fb /buildbot/master.cfg
parente71bc798ee976bd916cd19b913adb6f517c9e20b (diff)
downloaddeployment-1ae26617ca68987aa5a6e1777fea2dc11edc2b9b.tar.gz
deployment-1ae26617ca68987aa5a6e1777fea2dc11edc2b9b.tar.bz2
deployment-1ae26617ca68987aa5a6e1777fea2dc11edc2b9b.zip
Demo health-check.
Avoiding using the NPM wallet and going with the Git wallet, at least temporarily to see the recent changes.
Diffstat (limited to 'buildbot/master.cfg')
-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/",
)
)