0
0
mirror of https://github.com/vim/vim.git synced 2025-07-26 11:04:33 -04:00

patch 9.0.0937: forked repositories send out useless email

Problem:    Forked repositories send out useless email.
Solution:   When Coverity fails to run just ignore it. (Shane-XB-Qian,
            closes #11604)
This commit is contained in:
shane.xb.qian 2022-11-24 12:01:45 +00:00 committed by Bram Moolenaar
parent 82946e1439
commit e2da59851a
2 changed files with 11 additions and 5 deletions

View File

@ -22,7 +22,8 @@ jobs:
- name: Download Coverity - name: Download Coverity
run: | run: |
wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=vim" -O coverity_tool.tgz # probably no TOKEN if it was a forked repo
[ -n "${TOKEN}" ] && wget -q https://scan.coverity.com/download/cxx/linux64 --post-data "token=$TOKEN&project=vim" -O coverity_tool.tgz || exit 0
mkdir cov-scan mkdir cov-scan
tar ax -f coverity_tool.tgz --strip-components=1 -C cov-scan tar ax -f coverity_tool.tgz --strip-components=1 -C cov-scan
env: env:
@ -63,17 +64,20 @@ jobs:
- name: Build/scan vim - name: Build/scan vim
run: | run: |
cov-build --dir cov-int make -j${NPROC} # if no 'cov-build' there, then just cancel the process
[ -x "$(which cov-build)" ] && cov-build --dir cov-int make -j${NPROC} || exit 0
- name: Submit results - name: Submit results
run: | run: |
tar zcf cov-scan.tgz cov-int [ -d 'cov-int' ] && tar zcf cov-scan.tgz cov-int
curl --form token=$TOKEN \ [ -n "${TOKEN}" ] \
&& curl --form token=$TOKEN \
--form email=$EMAIL \ --form email=$EMAIL \
--form file=@cov-scan.tgz \ --form file=@cov-scan.tgz \
--form version="$(git rev-parse HEAD)" \ --form version="$(git rev-parse HEAD)" \
--form description="Automatic GHA scan" \ --form description="Automatic GHA scan" \
'https://scan.coverity.com/builds?project=vim' 'https://scan.coverity.com/builds?project=vim' \
|| exit 0
env: env:
TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }} TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }} EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }}

View File

@ -695,6 +695,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
937,
/**/ /**/
936, 936,
/**/ /**/