commit 4c16539d24fdea6e4ffdb7442efa48c984e1e4a3
parent 98aaeffe17e84706384ed236a2111e93fdce0238
Author: ms <ms@taler.net>
Date: Wed, 28 Jul 2021 09:03:37 +0200
wallet factory builds all Taler
Diffstat:
1 file changed, 9 insertions(+), 17 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -689,14 +689,14 @@ NIGHTLY_TRIGGERS.append("auditor-builder-demo")
WORKERS.append(worker.Worker("wallet-worker", "wallet-pass"))
WALLET_FACTORY = create_factory_with_deployment()
-WALLET_FACTORY.addStep(git_step("git://git.taler.net/wallet-core.git"))
WALLET_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/"
+ name="build",
+ description="Building all Taler codebase.",
+ descriptionDone="Taler built.",
+ command=["./build.sh"],
+ workdir="../../deployment/buildbot",
+ haltOnFailure=True
)
)
WALLET_FACTORY.addStep(
@@ -704,19 +704,11 @@ WALLET_FACTORY.addStep(
name="test",
description="Running wallet tests",
descriptionDone="Test correctly run",
- command=["timeout", "--preserve-status", "5m", "./$HOME/bin/taler-wallet-cli", "testing", "run-integrationtests"],
- workdir="build/",
+ command=["timeout", "--preserve-status", "5m",
+ "taler-wallet-cli", "testing", "run-integrationtests"],
+ workdir="../../",
)
)
-# WALLET_FACTORY.addStep(
-# ShellCommand(
-# name="lint",
-# description="Linting the wallet",
-# descriptionDone="Linting done",
-# command=["make", "lint"],
-# workdir="build/"
-# )
-# )
BUILDERS.append(util.BuilderConfig(
name="wallet-builder",