Skip to content

Commit 0df9c55

Browse files
committed
Refactor CI workflow to install gawk and locales, and configure locale settings
1 parent 872a5e3 commit 0df9c55

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/continuous-build-data.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,19 @@ jobs:
1313
build:
1414
name: Build phrase database
1515
runs-on: ubuntu-latest
16+
env:
17+
LANG: en_US.UTF-8
18+
LC_ALL: en_US.UTF-8
1619
steps:
1720
- uses: actions/checkout@v5
1821
- uses: actions/setup-python@v6
1922
with:
2023
python-version: '3.12'
21-
- run: sudo apt-get update && sudo apt-get install -y gawk
24+
- name: Install dependencies and configure locale
25+
run: |
26+
sudo apt-get update
27+
sudo apt-get install -y gawk locales
28+
sudo locale-gen en_US.UTF-8
2229
- name: Test data files
2330
run: make check
2431
working-directory: Source/Data

0 commit comments

Comments
 (0)