GHA: use locale instead of grepping env output

This commit is contained in:
Viktor Szakats 2025-07-23 14:45:40 +02:00
parent bcb9361845
commit b66222fe47
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
2 changed files with 2 additions and 2 deletions

View file

@ -686,7 +686,7 @@ jobs:
fi
[ -x ~/venv/bin/activate ] && source ~/venv/bin/activate
if [[ "${MATRIX_INSTALL_STEPS}" = *'codeset-test'* ]]; then
env | grep -E '(LC_|LANG)' | sort || true
locale || true
export LC_ALL=C
export LC_CTYPE=C
export LC_NUMERIC=fr_FR.UTF-8

View file

@ -481,7 +481,7 @@ jobs:
TFLAGS="-j20 ${TFLAGS}"
source ~/venv/bin/activate
if [[ "${MATRIX_INSTALL_STEPS}" = *'codeset-test'* ]]; then
env | grep -E '(LC_|LANG)' | sort || true
locale || true
export LC_ALL=C
export LC_CTYPE=C
export LC_NUMERIC=fr_FR.UTF-8