diff options
author | Özgür Kesim <oec-taler@kesim.org> | 2024-01-23 08:59:03 +0100 |
---|---|---|
committer | Özgür Kesim <oec-taler@kesim.org> | 2024-01-23 08:59:03 +0100 |
commit | 0275aacac6835b2ee0b1b579e93963691ab9e8bd (patch) | |
tree | 0e6f631adb816a05916b346b0e1404e3af52b288 /contrib/ci | |
parent | 366a2226abbf43b25ff38a8fec88315863281ab8 (diff) |
[ci] fixing CI testing, down to 4 out of 15 failing, WIP
Diffstat (limited to 'contrib/ci')
-rwxr-xr-x | contrib/ci/jobs/2-test/test.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/ci/jobs/2-test/test.sh b/contrib/ci/jobs/2-test/test.sh index 121c12f8..68adb1b7 100755 --- a/contrib/ci/jobs/2-test/test.sh +++ b/contrib/ci/jobs/2-test/test.sh @@ -6,6 +6,7 @@ apt-get upgrade -yqq ./bootstrap ./configure CFLAGS="-ggdb -O0" \ + --prefix=/usr \ --enable-logging=verbose \ --disable-doc make -j install @@ -18,7 +19,7 @@ sudo -u postgres createdb -p 5432 -O root talercheck check_command() { # Set LD_LIBRARY_PATH so tests can find the installed libs - LD_LIBRARY_PATH=/usr/local/lib:/usr/local/lib/taler PGPORT=5432 make check + LD_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu/taler:/usr/lib/taler PGPORT=5432 make check } print_logs() |