Skip to content

Commit 3fa0e42

Browse files
committed
Merge tag 'v8.2.5172' of https://github.com/vim/vim
2 parents a25c2c4 + c19f1a3 commit 3fa0e42

File tree

2,194 files changed

+546213
-259520
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,194 files changed

+546213
-259520
lines changed

appveyor.yml renamed to .appveyor.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,17 @@ skip_tags: true
55
environment:
66
matrix:
77
- FEATURE: HUGE
8-
- FEATURE: NORMAL
98
# disabled
109
# - FEATURE: TINY
1110
# - FEATURE: SMALL
11+
# - FEATURE: NORMAL
1212
# - FEATURE: BIG
1313

1414
matrix:
1515
fast_finish: true
1616

1717
before_build:
18+
# Use Windows SDK 7.1 (= MSVC 2010)
1819
- '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64 /release'
1920
- 'set INCLUDE=%INCLUDE%C:\Program Files (x86)\Windows Kits\8.1\Include\um'
2021

@@ -27,7 +28,7 @@ test_script:
2728
- path C:\Python35-x64;%PATH%
2829
- nmake -f Make_dos.mak VIMPROG=..\gvim
2930
- nmake -f Make_dos.mak clean
30-
# Testing with MingW console version
31+
# Testing with MSVC console version
3132
- nmake -f Make_dos.mak VIMPROG=..\vim
3233

3334
# vim: sw=2 sts=2 et ts=8 sr

.cirrus.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
env:
2+
CIRRUS_CLONE_DEPTH: 3
3+
FEATURES: huge
4+
5+
freebsd_task:
6+
name: FreeBSD
7+
matrix:
8+
- name: FreeBSD 13.1
9+
freebsd_instance:
10+
image_family: freebsd-13-1
11+
- name: FreeBSD 12.3
12+
freebsd_instance:
13+
image_family: freebsd-12-3
14+
only_if: $CIRRUS_TAG == ''
15+
timeout_in: 20m
16+
install_script:
17+
- pkg update -f
18+
- pkg install -y gettext
19+
build_script:
20+
- NPROC=$(getconf _NPROCESSORS_ONLN)
21+
- ./configure --with-features=${FEATURES}
22+
- make -j${NPROC}
23+
test_script:
24+
- src/vim --version
25+
# run tests as user "cirrus" instead of root
26+
- pw useradd cirrus -m
27+
- chown -R cirrus:cirrus .
28+
- sudo -u cirrus make test

.codecov.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
coverage:
2+
range: "80...100"
3+
status:
4+
project:
5+
default:
6+
threshold: 0.05%
7+
8+
# Files not run by tests
9+
ignore:
10+
- "src/dosinst.c"
11+
- "src/dosinst.h"
12+
- "src/uninstall.c"

.coveralls.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
service_name: github-actions

0 commit comments

Comments
 (0)