commit 9cd0371a781fb185cb4357633a539fde6f7ca867
parent d86cb3c14df2fadc4b24f51ef1d4ad18c1a3230b
Author: ng0 <ng0@n0.is>
Date: Mon, 14 Oct 2019 18:10:15 +0000
wallet npm
Diffstat:
1 file changed, 23 insertions(+), 23 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -243,40 +243,40 @@ WALLET_FACTORY = util.BuildFactory()
WALLET_FACTORY.addStep(git_step("git://git.taler.net/wallet-core.git"))
WALLET_FACTORY.addStep(
ShellCommand(
- name="bootstrap",
- description="Running bootstrap script",
- descriptionDone="Correctly bootstrapped",
- command=["./bootstrap"],
- workdir="build/"
- )
-)
-WALLET_FACTORY.addStep(
- ShellCommand(
- name="configuration",
- description="Running configure script",
- descriptionDone="Correctly configured",
- command=["./configure"],
+ name="fetch",
+ description="Running yarn install",
+ descriptionDone="Correctly installed",
+ command=["npm", "install", "-g", "--prefix", "$HOME", "."],
workdir="build/"
)
)
+#WALLET_FACTORY.addStep(
+# ShellCommand(
+# name="configuration",
+# description="Running configure script",
+# descriptionDone="Correctly configured",
+# command=["./configure"],
+# workdir="build/"
+# )
+#)
WALLET_FACTORY.addStep(
ShellCommand(
name="test",
description="Running wallet tests",
descriptionDone="Test correctly run",
- command=["make", "check"],
- workdir="build/"
- )
-)
-WALLET_FACTORY.addStep(
- ShellCommand(
- name="lint",
- description="Linting the wallet",
- descriptionDone="Linting done",
- command=["make", "lint"],
+ command=["./node_modules/.bin/taler-wallet-cli", "integrationtest", "--verbose"],
workdir="build/"
)
)
+# WALLET_FACTORY.addStep(
+# ShellCommand(
+# name="lint",
+# description="Linting the wallet",
+# descriptionDone="Linting done",
+# command=["make", "lint"],
+# workdir="build/"
+# )
+# )
DEBUG_FACTORY = util.BuildFactory()
DEBUG_FACTORY.addStep(