From 845b72854de90de13879598df53f1c388e52e1ba Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Thu, 14 Jan 2021 17:55:59 +0100 Subject: patch 8.2.2346: Codecov reports every little coverage drop Problem: Codecov reports every little coverage drop. Solution: Tolerate a 0.05% drop. Hide the appveyor config file. (Ozaki Kiichi, closes #7678) --- .appveyor.yml | 34 ++++++++++++++++++++++++++++++++++ .codecov.yml | 6 ++++++ appveyor.yml | 34 ---------------------------------- src/version.c | 2 ++ 4 files changed, 42 insertions(+), 34 deletions(-) create mode 100644 .appveyor.yml create mode 100644 .codecov.yml delete mode 100644 appveyor.yml diff --git a/.appveyor.yml b/.appveyor.yml new file mode 100644 index 0000000000..80f8e38f0b --- /dev/null +++ b/.appveyor.yml @@ -0,0 +1,34 @@ +version: "{build}" + +skip_tags: true + +environment: + matrix: + - FEATURE: HUGE +# disabled +# - FEATURE: TINY +# - FEATURE: SMALL +# - FEATURE: NORMAL +# - FEATURE: BIG + +matrix: + fast_finish: true + +before_build: + # Use Windows SDK 7.1 (= MSVC 2010) + - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release' + - 'set INCLUDE=%INCLUDE%C:\Program Files (x86)\Windows Kits\8.1\Include\um' + +build_script: + - ci/appveyor.bat + +test_script: + - cd src/testdir + # Testing with MSVC gvim + - path C:\Python35-x64;%PATH% + - nmake -f Make_dos.mak VIMPROG=..\gvim + - nmake -f Make_dos.mak clean + # Testing with MSVC console version + - nmake -f Make_dos.mak VIMPROG=..\vim + +# vim: sw=2 sts=2 et ts=8 sr diff --git a/.codecov.yml b/.codecov.yml new file mode 100644 index 0000000000..6140fe9669 --- /dev/null +++ b/.codecov.yml @@ -0,0 +1,6 @@ +coverage: + range: "80...100" + status: + project: + default: + threshold: 0.05% diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index 80f8e38f0b..0000000000 --- a/appveyor.yml +++ /dev/null @@ -1,34 +0,0 @@ -version: "{build}" - -skip_tags: true - -environment: - matrix: - - FEATURE: HUGE -# disabled -# - FEATURE: TINY -# - FEATURE: SMALL -# - FEATURE: NORMAL -# - FEATURE: BIG - -matrix: - fast_finish: true - -before_build: - # Use Windows SDK 7.1 (= MSVC 2010) - - '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release' - - 'set INCLUDE=%INCLUDE%C:\Program Files (x86)\Windows Kits\8.1\Include\um' - -build_script: - - ci/appveyor.bat - -test_script: - - cd src/testdir - # Testing with MSVC gvim - - path C:\Python35-x64;%PATH% - - nmake -f Make_dos.mak VIMPROG=..\gvim - - nmake -f Make_dos.mak clean - # Testing with MSVC console version - - nmake -f Make_dos.mak VIMPROG=..\vim - -# vim: sw=2 sts=2 et ts=8 sr diff --git a/src/version.c b/src/version.c index 30a550fe2d..56522d9343 100644 --- a/src/version.c +++ b/src/version.c @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2346, /**/ 2345, /**/ -- cgit v1.2.3