# HG changeset patch # User Bram Moolenaar # Date 1628508604 -7200 # Node ID 62fa7eb8462520e84520ed2e7b269a7f1615ac24 # Parent 0f6835247aa875486270e17649afe578eb1fdf12 patch 8.2.3319: Coverity action on github does not work Commit: https://github.com/vim/vim/commit/eed9616120f60ad17d5e133f505bba5c559aee89 Author: James McCoy 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) diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml --- a/.github/workflows/coverity.yml +++ b/.github/workflows/coverity.yml @@ -59,8 +59,8 @@ jobs: run: | ./configure --with-features=huge ${CONFOPT} --enable-fail-if-missing # Append various warning flags to CFLAGS. - sed -i -f ci/config.mk.sed ${SRCDIR}/auto/config.mk - sed -i -f ci/config.mk.${CC}.sed ${SRCDIR}/auto/config.mk + sed -i -f ci/config.mk.sed src/auto/config.mk + sed -i -f ci/config.mk.${CC}.sed src/auto/config.mk - name: Build/scan vim run: | diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -756,6 +756,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3319, +/**/ 3318, /**/ 3317,