ci: Set the locale under which to run tests

Rather than expecting a particular locale to already be set.
This commit is contained in:
Bastien Nocera 2022-07-29 10:52:25 +02:00 committed by Georges Basile Stavracas Neto
parent 14c548301c
commit c2045cbded

View File

@ -88,6 +88,7 @@ jobs:
run: meson test -C _build
env:
ASAN_OPTIONS: detect_leaks=0 # Right now we're not fully clean, but this gets us use-after-free etc
LC_ALL: en_US.UTF-8
- name: Collect logs on failure
if: failure() || cancelled()
run: mv _build/meson-logs/* test-logs/ || true
@ -151,6 +152,7 @@ jobs:
run: make -C _build check -j $(getconf _NPROCESSORS_ONLN)
env:
ASAN_OPTIONS: detect_leaks=0 # Right now we're not fully clean, but this gets us use-after-free etc
LC_ALL: en_US.UTF-8
- name: Collect overall test logs on failure
if: failure()
run: mv _build/test-suite.log test-logs/ || true