Skip to content

Commit 202e61b

Browse files
committed
Force 'LC_ALL=C' for all steps of '.github/workflows/ccpp.yml:jobs.build-and-check'
1 parent 60d1fd5 commit 202e61b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ccpp.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
jobs:
1212
build-and-check:
1313

14+
env:
15+
# Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below).
16+
LC_ALL: C
17+
1418
runs-on: ubuntu-latest
1519

1620
steps:
@@ -46,7 +50,7 @@ jobs:
4650
- name: Build
4751
run: |
4852
cd gccrs-build; \
49-
LC_ALL=C make -j $(nproc) > log 2>&1;
53+
make -j $(nproc) > log 2>&1
5054
5155
- name: Build logs
5256
run: cat gccrs-build/log

0 commit comments

Comments
 (0)