Skip to content
This repository was archived by the owner on Jun 20, 2024. It is now read-only.

Commit 03d35f1

Browse files
committed
Tests: Fix neovim failures and use vroom 0.14.0
Specific changes: * Fixes get-pip errors in .travis.yml and renames legacy "matrix" field to "jobs". * Updates to use vroom 0.14.0
1 parent 6bebc3b commit 03d35f1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
language: generic
22
env:
33
global:
4-
- VROOM_VERSION=0.13.0
5-
matrix:
4+
- VROOM_VERSION=0.14.0
5+
jobs:
66
# This Maktaba version should match the minimum required in instant/flags.vim.
77
- CI_TARGET=vim MAKTABA_VERSION=1.12.0
88
- CI_TARGET=vim MAKTABA_VERSION=master
@@ -15,7 +15,7 @@ before_script:
1515
sudo apt-get install vim-gnome;
1616
elif [ $CI_TARGET = neovim ]; then
1717
eval "$(curl -Ss https://raw.githubusercontent.com/neovim/bot-ci/master/scripts/travis-setup.sh) nightly-x64" &&
18-
wget https://bootstrap.pypa.io/get-pip.py &&
18+
wget https://bootstrap.pypa.io/pip/3.5/get-pip.py &&
1919
sudo python3 get-pip.py &&
2020
sudo pip3 install neovim;
2121
fi
@@ -28,5 +28,5 @@ services:
2828
script:
2929
- '[ $CI_TARGET = neovim ] && VROOM_ARGS="--neovim" || VROOM_ARGS=""'
3030
- vroom $VROOM_ARGS --crawl ./vroom/
31-
matrix:
31+
jobs:
3232
fast_finish: true

0 commit comments

Comments
 (0)