diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-11-29 20:26:13 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-11-29 20:26:13 +0100 |
commit | 9134f1ecd41207045db3cb47f0269497980395ad (patch) | |
tree | 8e9d1a099c603683cd365b0d70cc65f3b3a4247b /.cirrus.yml | |
parent | 68e9e5f7fccb8038cf0ca5b5d95c85a923152f46 (diff) | |
download | vim-git-9134f1ecd41207045db3cb47f0269497980395ad.tar.gz |
patch 8.1.2358: tests fail on Cirrus CI for FreeBSDv8.1.2358
Problem: Tests fail on Cirrus CI for FreeBSD.
Solution: Fix a test and skip some. (Christian Brabandt, closes #5281)
Diffstat (limited to '.cirrus.yml')
-rw-r--r-- | .cirrus.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml index 2aae80e39..907d10eb4 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -1,5 +1,5 @@ env: - #CIRRUS_CLONE_DEPTH: 1 + CIRRUS_CLONE_DEPTH: 3 FEATURES: huge freebsd_12_task: @@ -13,4 +13,5 @@ freebsd_12_task: - make -j${NPROC} - src/vim --version test_script: - - make test + # Runtime Indent tests do not work, run only the normal test suite + - cd src && make test |