commit 6b83c0c9578ad7a10c4c9700015612f27fdc9b26
parent bb91ed5b44219c65a9579816463f5a4f60216f28
Author: Martin Schanzenbach <schanzen@gnunet.org>
Date: Mon, 14 Apr 2025 11:16:24 +0200
explicitly get tags
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -626,6 +626,7 @@ gnunet_meson_step = steps.ShellSequence(
'TMPDIR': '/tmp/gnunet/'},
haltOnFailure=True,
commands=[
+ util.ShellArg(command=['git', 'fetch', '--tags'], logname='get tags', haltOnFailure=True),
util.ShellArg(command=['./bootstrap'], logname='bootstrap', haltOnFailure=True),
util.ShellArg(command=['meson', 'setup',
"-Dprefix=/tmp/gnunet-buildbot",
@@ -647,7 +648,7 @@ gnunet_meson_step = steps.ShellSequence(
gnunet_meson_build_steps = [
steps.Git(repourl='git://git.gnunet.org/gnunet.git',
- mode='full', method='clobber'),
+ mode='full', method='full'),
gnunet_meson_step
]