sandcastle-ng

Scripts for the deployment of Sandcastle (GNU Taler)
Log | Files | Refs | README

commit a7789636f80a400a00909e16f64b70af4ed886b7
parent 4599594cf630a291903a7b30173598571a0b89db
Author: Antoine A <>
Date:   Thu,  9 Jul 2026 13:14:12 +0200

Fix script and use tag for libeufin as we want to test the rust rewrite

Diffstat:
Mbuildscripts/sandcastle-build-generic | 5+++--
Mcontrib/ci/jobs/1-build-head/update-tags.sh | 2+-
2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/buildscripts/sandcastle-build-generic b/buildscripts/sandcastle-build-generic @@ -8,6 +8,7 @@ # deb-v$maj.$min$.$patch-$revision => release version with debian revision # Debian revisions of dev versions are *not* supported +from logging import log, warning import os import sys import subprocess @@ -43,8 +44,8 @@ def get_tag_debver(tag): a, b = tag.split("-") return a + ":" + b return tag - return tag - raise Exception(f"unexpected tag format: {tag}") + warning(f"unexpected tag format: {tag}") + return "0.0.0" def main(): diff --git a/contrib/ci/jobs/1-build-head/update-tags.sh b/contrib/ci/jobs/1-build-head/update-tags.sh @@ -21,7 +21,7 @@ TURNSTILE_HEAD=$(fetch_head "git://git.taler.net/turnstile") echo "master" > buildconfig/gnunet.tag echo "master" > buildconfig/exchange.tag echo "master" > buildconfig/merchant.tag -echo "master" > buildconfig/libeufin.tag +#echo "master" > buildconfig/libeufin.tag echo "master" > buildconfig/merchant-demos.tag echo "master" > buildconfig/wallet.tag echo "master" > buildconfig/sync.tag