exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

commit 16eac77ef88bc9639bbfb25ff866449de688d1be
parent 2ecd012b569789fa6c6d461fdbbc76473422cf53
Author: Devan Carpenter <devan@taler.net>
Date:   Wed,  6 Sep 2023 17:44:14 -0400

ci: set LD_LIBRARY_PATH for tests

Diffstat:
Mci/jobs/1-test/test.sh | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/ci/jobs/1-test/test.sh b/ci/jobs/1-test/test.sh @@ -8,9 +8,11 @@ set -evu make make install + check_command() { - make check + # Set LD_LIBRARY_PATH so tests can find the installed libs + LD_LIBRARY_PATH=/usr/local/lib make check } print_logs()