|
From: <fli...@li...> - 2026-05-13 09:21:36
|
unknown user pushed a commit to branch next
in repository flightgear.
The following commit(s) were added to refs/heads/next by this push:
new 472ce1427 CI: use the C.UTF-8 locale
472ce1427 is described below
SF URL: http://sourceforge.net/p/flightgear/flightgear/ci/472ce1427d84f57a43e9177829c0d14706b7ef3e/
Commit: 472ce1427d84f57a43e9177829c0d14706b7ef3e
Author: Florent Rougon
Committer: Florent Rougon
AuthorDate: Wed May 13 09:32:12 2026 +0200
CI: use the C.UTF-8 locale
The goal is to get rid of the following message when building FG:
Generating qrc_fgqcanvas_resources.cpp
Detected locale "C" with character encoding "ANSI_X3.4-1968", which is
not UTF-8. Qt depends on a UTF-8 locale, and has switched to "C.UTF-8"
instead. If this causes problems, reconfigure your locale. (...)
---
.gitlab-ci.yml | 1 +
1 file changed, 1 insertion(+)
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 9a149a208..b4e3fd7e6 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,6 +23,7 @@ spec:
---
variables:
+ LC_CTYPE: C.UTF-8
BUILD_DIR: "$CI_PROJECT_DIR/build"
PREFIX_DIR: "$CI_PROJECT_DIR/dist"
# cache:key is not allowed to contain '/' characters
|