Skip to content

Commit 54b5b76

Browse files
committed
Install Gnu Make 4
1 parent 7f31c1e commit 54b5b76

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -361,22 +361,23 @@ jobs:
361361
sed -i.bak -f ci/config.mk.clang-12.sed ${SRCDIR}/auto/config.mk
362362
fi
363363
364+
- name: Install packages for testing
365+
run: |
366+
# Apple diff is broken. Use GNU diff instead. See #14032.
367+
brew install diffutils make
368+
364369
- name: Build
365370
env:
366371
LC_ALL: C
367372
run: |
368-
make -d -j${NPROC}
373+
gmake -d -j${NPROC}
369374
370375
- name: Check version
371376
run: |
372377
"${SRCDIR}"/vim --version
373378
"${SRCDIR}"/vim -u NONE -i NONE --not-a-term -esNX -V1 -S ci/if_ver-1.vim -c quit
374379
"${SRCDIR}"/vim -u NONE -i NONE --not-a-term -esNX -V1 -S ci/if_ver-2.vim -c quit
375380
376-
- name: Install packages for testing
377-
run: |
378-
# Apple diff is broken. Use GNU diff instead. See #14032.
379-
brew install diffutils
380381
381382
- name: Test
382383
timeout-minutes: 20

0 commit comments

Comments
 (0)