comparison .github/workflows/ci.yml @ 23388:57e79eda1a62 v8.2.2237

patch 8.2.2237: CI on Mac fails in sed command Commit: https://github.com/vim/vim/commit/ed1e4c9a70aaa7de56bac23e75a846e874a32a56 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Dec 28 15:46:47 2020 +0100 patch 8.2.2237: CI on Mac fails in sed command Problem: CI on Mac fails in sed command. Solution: Set LC_ALL to "C". (Ozaki Kiichi, closes https://github.com/vim/vim/issues/7565)
author Bram Moolenaar <Bram@vim.org>
date Mon, 28 Dec 2020 16:00:03 +0100
parents a668a3cad9f6
children 9bd721a95893
comparison
equal deleted inserted replaced
23387:3601a4bb87b9 23388:57e79eda1a62
289 # On macOS, the entity of gcc is clang. 289 # On macOS, the entity of gcc is clang.
290 sed -i.bak -f ci/config.mk.clang.sed ${SRCDIR}/auto/config.mk 290 sed -i.bak -f ci/config.mk.clang.sed ${SRCDIR}/auto/config.mk
291 291
292 - name: Build 292 - name: Build
293 env: 293 env:
294 LANG: C 294 LC_ALL: C
295 run: | 295 run: |
296 make -j${NPROC} 296 make -j${NPROC}
297 297
298 - name: Check version 298 - name: Check version
299 run: | 299 run: |