commit 9e63709eee8c93bb831e0d55d99bd49d68d4b7a9 parent 1a65ba85867bb31ed0a0785a9395f8187d1d2830 Author: Antoine A <> Date: Wed, 1 Apr 2026 18:57:04 +0200 ci: test new component Diffstat:
| M | contrib/ci/deb-test.sh | | | 12 | ++++++++---- |
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git a/contrib/ci/deb-test.sh b/contrib/ci/deb-test.sh @@ -5,8 +5,8 @@ function step { echo -e "\n$@" >&2 } -BINS="taler-magnet-bank taler-cyclos" -USERS="taler-magnet-bank-httpd taler-magnet-bank-worker taler-cyclos-httpd taler-cyclos-worker" +BINS="taler-magnet-bank taler-cyclos taler-apns-relay" +USERS="taler-magnet-bank-httpd taler-magnet-bank-worker taler-cyclos-httpd taler-cyclos-worker taler-apns-relay-httpd taler-apns-relay-worker" step "Install" dpkg -i ../*.deb @@ -40,6 +40,10 @@ for USER in taler-cyclos-httpd taler-cyclos-worker; do step "Check $USER db access" sudo -u $USER psql -d taler-cyclos -c "SELECT 1;" done +for USER in taler-apns-relay-httpd taler-apns-relay-worker; do + step "Check $USER db access" + sudo -u $USER psql -d taler-apns-relay -c "SELECT 1;" +done step "Check man pages" for BIN in $BINS; do @@ -48,13 +52,13 @@ for BIN in $BINS; do done step "Remove" -apt remove -y taler-magnet-bank taler-cyclos +apt remove -y $BINS step "Reinstall" dpkg -i ../*.deb step "Purge" -apt purge -y taler-magnet-bank taler-cyclos +apt purge -y $BINS step "Reinstall" dpkg -i ../*.deb \ No newline at end of file