comparison .github/workflows/coverity.yml @ 25565:62fa7eb84625 v8.2.3319

patch 8.2.3319: Coverity action on github does not work Commit: https://github.com/vim/vim/commit/eed9616120f60ad17d5e133f505bba5c559aee89 Author: James McCoy <jamessan@jamessan.com> Date: Mon Aug 9 13:20:38 2021 +0200 patch 8.2.3319: Coverity action on github does not work Problem: Coverity action on github does not work. Solution: Remove undefined $SRCDIR. (James McCoy, closes https://github.com/vim/vim/issues/8739)
author Bram Moolenaar <Bram@vim.org>
date Mon, 09 Aug 2021 13:30:04 +0200
parents 8a8847008e27
children 272a24b53d0c
comparison
equal deleted inserted replaced
25564:0f6835247aa8 25565:62fa7eb84625
57 57
58 - name: Configure 58 - name: Configure
59 run: | 59 run: |
60 ./configure --with-features=huge ${CONFOPT} --enable-fail-if-missing 60 ./configure --with-features=huge ${CONFOPT} --enable-fail-if-missing
61 # Append various warning flags to CFLAGS. 61 # Append various warning flags to CFLAGS.
62 sed -i -f ci/config.mk.sed ${SRCDIR}/auto/config.mk 62 sed -i -f ci/config.mk.sed src/auto/config.mk
63 sed -i -f ci/config.mk.${CC}.sed ${SRCDIR}/auto/config.mk 63 sed -i -f ci/config.mk.${CC}.sed src/auto/config.mk
64 64
65 - name: Build/scan vim 65 - name: Build/scan vim
66 run: | 66 run: |
67 cov-build --dir cov-int make -j${NPROC} 67 cov-build --dir cov-int make -j${NPROC}
68 68