taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit c507ce346387b3ebf7da0df894221e96a474475d
parent 63d8147f534bfb6a04d663d3d2ea7477041aa566
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sun, 12 Jan 2025 13:32:45 +0100

move BB to another port

Diffstat:
Mbuildbot/master.cfg | 6+++---
Mpackaging/ng/buildconfig/anastasis-gtk.tag | 2+-
Mpackaging/ng/buildconfig/anastasis.tag | 2+-
Mpackaging/ng/buildconfig/challenger.tag | 2+-
Mpackaging/ng/buildconfig/gnunet-gtk.tag | 2+-
Mpackaging/ng/buildconfig/gnunet.tag | 2+-
Mpackaging/ng/buildconfig/sync.tag | 2+-
Mpackaging/ng/buildconfig/taler-exchange.tag | 2+-
Mpackaging/ng/buildconfig/taler-harness.tag | 2+-
Mpackaging/ng/buildconfig/taler-merchant.tag | 2+-
Mpackaging/ng/buildconfig/taler-wallet-cli.tag | 2+-
Mpackaging/ng/taler-pkg | 1+
Mpackaging/others/debian-bookworm/Dockerfile | 18+++++++++---------
Mpackaging/others/ubuntu-lunar/Dockerfile | 6+++---
Mpackaging/others/ubuntu-mantic/Dockerfile | 6+++---
15 files changed, 29 insertions(+), 28 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -408,7 +408,7 @@ SERVICES.append(reporters.MailNotifier( extraRecipients=['linkcheck@taler.net'] )) -# SERVICES.append(tipReserveEmails) +# SERVICES.append(tipReserveEmails) NIGHTLY_TRIGGERS.append("linkchecker-builder") @@ -776,7 +776,7 @@ c["change_source"] = [pollGnunetSource, pbSource] # least 'port' option that workers could connect to your master # with this protocol. 'port' must match the value configured into # the workers (with their --master option) -c["protocols"] = {"pb": {"port": "tcp:9989:interface=127.0.0.1"}} +c["protocols"] = {"pb": {"port": "tcp:9988:interface=127.0.0.1"}} # We use nginx to expose the BB under this URL. c["buildbotURL"] = "https://buildbot.taler.net/" @@ -786,7 +786,7 @@ c["buildbotURL"] = "https://buildbot.taler.net/" # -- formerly commented out as not packaged properly in Debian and others, see # https://bugzilla.redhat.com/show_bug.cgi?id=1557687 c["www"] = { - "port": "tcp:8010:interface=127.0.0.1", + "port": "tcp:8009:interface=127.0.0.1", "default_page": 'builders', "plugins": { "waterfall_view": True, diff --git a/packaging/ng/buildconfig/anastasis-gtk.tag b/packaging/ng/buildconfig/anastasis-gtk.tag @@ -1 +1 @@ -v0.5.0 +v0.6.1 diff --git a/packaging/ng/buildconfig/anastasis.tag b/packaging/ng/buildconfig/anastasis.tag @@ -1 +1 @@ -v0.5.2 +v0.6.1 diff --git a/packaging/ng/buildconfig/challenger.tag b/packaging/ng/buildconfig/challenger.tag @@ -1 +1 @@ -v0.13.0 +v0.14.1 diff --git a/packaging/ng/buildconfig/gnunet-gtk.tag b/packaging/ng/buildconfig/gnunet-gtk.tag @@ -1 +1 @@ -v0.22.0 +v0.23.1 diff --git a/packaging/ng/buildconfig/gnunet.tag b/packaging/ng/buildconfig/gnunet.tag @@ -1 +1 @@ -v0.22.0 +v0.23.1 diff --git a/packaging/ng/buildconfig/sync.tag b/packaging/ng/buildconfig/sync.tag @@ -1 +1 @@ -v0.13.1 +v0.14.1 diff --git a/packaging/ng/buildconfig/taler-exchange.tag b/packaging/ng/buildconfig/taler-exchange.tag @@ -1 +1 @@ -v0.14.0 +v0.14.1 diff --git a/packaging/ng/buildconfig/taler-harness.tag b/packaging/ng/buildconfig/taler-harness.tag @@ -1 +1 @@ -v0.13.3 +v0.14.1 diff --git a/packaging/ng/buildconfig/taler-merchant.tag b/packaging/ng/buildconfig/taler-merchant.tag @@ -1 +1 @@ -debian-0.14.0-1 +v0.14.1 diff --git a/packaging/ng/buildconfig/taler-wallet-cli.tag b/packaging/ng/buildconfig/taler-wallet-cli.tag @@ -1 +1 @@ -v0.13.3 +v0.14.1 diff --git a/packaging/ng/taler-pkg b/packaging/ng/taler-pkg @@ -19,6 +19,7 @@ components = [ "gnunet-gtk", "libeufin", "sync", + "challenger", "taler-exchange", "taler-harness", "taler-merchant", diff --git a/packaging/others/debian-bookworm/Dockerfile b/packaging/others/debian-bookworm/Dockerfile @@ -19,9 +19,9 @@ RUN npm install -g node pnpm ADD "https://www.random.org/cgi-bin/randbyte?nbytes=10&format=h" skipcache -COPY libeufin-build.sh /root/ -RUN chmod +x /root/libeufin-build.sh -RUN /root/libeufin-build.sh master +#COPY libeufin-build.sh /root/ +#RUN chmod +x /root/libeufin-build.sh +#RUN /root/libeufin-build.sh master COPY gnunet-build.sh /root/ RUN chmod +x /root/gnunet-build.sh @@ -31,9 +31,9 @@ COPY gnunet-gtk-build.sh /root/ RUN chmod +x /root/gnunet-gtk-build.sh RUN /root/gnunet-gtk-build.sh master -COPY libeufin-build.sh /root/ -RUN chmod +x /root/libeufin-build.sh -RUN /root/libeufin-build.sh master +#COPY libeufin-build.sh /root/ +#RUN chmod +x /root/libeufin-build.sh +#RUN /root/libeufin-build.sh master COPY exchange-build.sh /root/ RUN chmod +x /root/exchange-build.sh @@ -51,6 +51,6 @@ COPY anastasis-build.sh /root/ RUN chmod +x /root/anastasis-build.sh RUN /root/anastasis-build.sh master -COPY wallet-build.sh /root/ -RUN chmod +x /root/wallet-build.sh -RUN /root/wallet-build.sh master +#COPY wallet-build.sh /root/ +#RUN chmod +x /root/wallet-build.sh +#RUN /root/wallet-build.sh master diff --git a/packaging/others/ubuntu-lunar/Dockerfile b/packaging/others/ubuntu-lunar/Dockerfile @@ -52,6 +52,6 @@ COPY libeufin-build.sh /root/ RUN chmod +x /root/libeufin-build.sh RUN /root/libeufin-build.sh master -COPY wallet-build.sh /root/ -RUN chmod +x /root/wallet-build.sh -RUN /root/wallet-build.sh master +#COPY wallet-build.sh /root/ +#RUN chmod +x /root/wallet-build.sh +#RUN /root/wallet-build.sh master diff --git a/packaging/others/ubuntu-mantic/Dockerfile b/packaging/others/ubuntu-mantic/Dockerfile @@ -45,9 +45,9 @@ RUN chmod +x /root/anastasis-build.sh RUN /root/anastasis-build.sh master # No wallet on Jammy -COPY wallet-build.sh /root/ -RUN chmod +x /root/wallet-build.sh -RUN /root/wallet-build.sh master +#COPY wallet-build.sh /root/ +#RUN chmod +x /root/wallet-build.sh +#RUN /root/wallet-build.sh master COPY libeufin-build.sh /root/ RUN chmod +x /root/libeufin-build.sh