We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd265e0 commit 5adcf71Copy full SHA for 5adcf71
.github/workflows/ci.yml
@@ -36,6 +36,14 @@ jobs:
36
steps:
37
- uses: actions/checkout@v4
38
39
+ # Generate missing locales in the container. Programs are executed with
40
+ # en_US.UTF-8 locale, this locale must be defined in the container in
41
+ # order to be restored by Rift without errors when manipulating dates.
42
+ - name: Install locales
43
+ run: |
44
+ dnf install -y glibc-locale-source glibc-langpack-en
45
+ localedef -i en_US -f UTF-8 en_US.UTF-8
46
+
47
# Mount binfmt_misc virtual FS to register support of additional binary
48
# formats for multi-arch builds.
49
- name: Mount binfmt_misc virtual filesystem
0 commit comments