commit 1322668a30da2648d047db28ff6cdbaa6bd074a3 parent 08da5ef4b44882a7ff757f94442ce1247cc860dc Author: Martin Schanzenbach <schanzen@gnunet.org> Date: Sun, 12 Apr 2026 16:24:38 +0200 ci: enable integrationtests Diffstat:
| M | contrib/ci/jobs/2-test/4-test.sh | | | 10 | ++++------ |
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/contrib/ci/jobs/2-test/4-test.sh b/contrib/ci/jobs/2-test/4-test.sh @@ -4,20 +4,18 @@ set -evux check_command() { # Set LD_LIBRARY_PATH so tests can find the installed libs - LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/taler:/usr/lib:/usr/lib/taler PGPORT=5432 make check + LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/taler:/usr/lib:/usr/lib/taler PGPORT=5432 make check installcheck integrationtests } print_logs() { set +e - for i in build/meson-logs/testlog.txt - do - echo "Printing ${i}" - cat "$i" - done + echo "Printing meson log" + cat build/meson-logs/testlog.txt } + if ! check_command ; then print_logs exit 1