summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xci/jobs/1-test/test.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/jobs/1-test/test.sh b/ci/jobs/1-test/test.sh
index 27582dd74..6c3d2be21 100755
--- 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()