From d9d68fe7c59d245245eda8a3b0807286d782c554 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Tue, 22 Jul 2025 20:34:00 +0200 Subject: [PATCH] finalize codeset-tests --- .github/workflows/linux.yml | 6 ++++-- .github/workflows/macos.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 2e6ae4fbdb..602d28f941 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -685,8 +685,10 @@ jobs: fi fi [ -x ~/venv/bin/activate ] && source ~/venv/bin/activate - export LC_ALL=C - export LC_CTYPE=C + if [[ "${MATRIX_INSTALL_STEPS}" = *'codeset-test'* ]]; then + export LC_ALL=C + export LC_CTYPE=C + fi if [ "${MATRIX_BUILD}" = 'cmake' ]; then cmake --build bld --verbose --target "${TEST_TARGET}" else diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index def44ffbc1..12c2b7b23f 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -480,8 +480,10 @@ jobs: run: | TFLAGS="-j20 ${TFLAGS}" source ~/venv/bin/activate - export LC_ALL=C - export LC_CTYPE=C + if [[ "${MATRIX_INSTALL_STEPS}" = *'codeset-test'* ]]; then + export LC_ALL=C + export LC_CTYPE=C + fi rm -f ~/.curlrc if [ "${MATRIX_BUILD}" = 'cmake' ]; then cmake --build bld --verbose --target "${TEST_TARGET}"