merge/upstream-full #105

Manually merged
jabber.developer merged 407 commits from merge/upstream-full into master 2026-05-26 17:54:34 +00:00
392 changed files with 13317 additions and 36187 deletions
Showing only changes of commit 540d9e686c - Show all commits

View File

@@ -34,13 +34,13 @@ jobs:
script: ./ci/ci-build.sh
- flavor: debian
buildsystem: meson
tests: unit+func
tests: unit
omemo: signal
script: ./ci/ci-meson-build.sh
omemo_env: libsignal
- flavor: debian
buildsystem: meson
tests: unit+func
tests: unit
omemo: libomemo
script: ./ci/ci-meson-build.sh
omemo_env: libomemo-c

View File

@@ -49,7 +49,7 @@ if [[ "$(uname | tr '[:upper:]' '[:lower:]')" == linux* ]]; then
meson setup build_valgrind ${tests[0]} ${BACKEND_OPT} -Dtests=true -Db_sanitize=address,undefined
meson compile -C build_valgrind
meson test -C build_valgrind --print-errorlogs --wrap=valgrind || echo "Valgrind issues detected"
meson test -C build_valgrind "unit tests" --print-errorlogs --wrap=valgrind || echo "Valgrind issues detected"
rm -rf build_valgrind
fi
@@ -66,7 +66,7 @@ do
meson setup build_run ${features} ${BACKEND_OPT} -Dtests=true
meson compile -C build_run
meson test -C build_run --print-errorlogs
meson test -C build_run "unit tests" --print-errorlogs
./build_run/profanity -v
done