From c2045cbded7bef2b5117d8a248452cb9399deae0 Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 29 Jul 2022 10:52:25 +0200 Subject: [PATCH] ci: Set the locale under which to run tests Rather than expecting a particular locale to already be set. --- .github/workflows/check.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 1ab21fa9..b15db55a 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -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