Skip to content

Commit 94f3b36

Browse files
committed
fix CI locale warning?
1 parent 6bc347d commit 94f3b36

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,10 @@ jobs:
138138
restore-keys: ${{ github.job }}-${{ matrix.job-type }}-ccache-
139139

140140
- name: CI script
141-
run: ./ci/test_run_all.sh
141+
run: |
142+
locale
143+
./ci/test_run_all.sh
144+
locale
142145
env:
143146
FILE_ENV: ${{ matrix.file-env }}
144147

ci/test/00_setup_env_mac_native.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
# Distributed under the MIT software license, see the accompanying
55
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
66

7-
export LC_ALL=C.UTF-8
7+
export LANG="C.UTF-8"
8+
export LC_ALL="C.UTF-8"
89

910
# Homebrew's [email protected] is marked as externally managed (PEP 668).
1011
# Therefore, `--break-system-packages` is needed.

0 commit comments

Comments
 (0)