Skip to content

Commit

Permalink
Force 'LC_ALL=C' for all steps of '.github/workflows/ccpp.yml:jobs.bu…
Browse files Browse the repository at this point in the history
…ild-and-check'
  • Loading branch information
tschwinge committed Dec 4, 2024
1 parent 466845f commit da8a773
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ccpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
jobs:
build-and-check:

env:
# Force locale, in particular for reproducible results re '.github/bors_log_expected_warnings' (see below).
LC_ALL: C

runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -46,7 +50,7 @@ jobs:
- name: Build
run: |
cd gccrs-build; \
LC_ALL=C make -j $(nproc) > log 2>&1;
make -j $(nproc) > log 2>&1
- name: Build logs
run: cat gccrs-build/log
Expand Down

0 comments on commit da8a773

Please sign in to comment.