Skip to content

Commit 8ac8b4c

Browse files
committed
ci: export LC_ALL
1 parent 1ff5ad1 commit 8ac8b4c

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

ci/configs/default.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export LC_ALL=C.UTF-8
12
CI_DESC="CI job using default libraries and tools, and running IWYU"
23
CI_DIR=build-default
34
export CXXFLAGS="-Werror -Wall -Wextra -Wpedantic -Wno-unused-parameter"

ci/configs/gnu32.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export LC_ALL=C.UTF-8
12
CI_DESC="CI job cross-compiling to 32-bit"
23
CI_DIR=build-gnu32
34
NIX_ARGS=(

ci/configs/llvm.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export LC_ALL=C.UTF-8
12
CI_DESC="CI job using LLVM-based libraries and tools (clang, libc++, clang-tidy, iwyu) and testing Ninja"
23
CI_DIR=build-llvm
34
NIX_ARGS=(--arg enableLibcxx true)

ci/configs/tsan.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
export LC_ALL=C.UTF-8
12
CI_DESC="CI job running thread sanitizer"
23
CI_DIR=build-tsan
34
export CXX=clang++

ci/scripts/ci.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
2+
export LC_ALL=C.UTF-8
23
set -o errexit -o nounset -o pipefail -o xtrace
34

45
[ "${CI_CONFIG+x}" ] && source "$CI_CONFIG"

ci/scripts/run.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/usr/bin/env bash
2+
export LC_ALL=C.UTF-8
23
set -o errexit -o nounset -o pipefail -o xtrace
34

45
[ "${CI_CONFIG+x}" ] && source "$CI_CONFIG"

0 commit comments

Comments
 (0)