-
Notifications
You must be signed in to change notification settings - Fork 39
/
.travis.yml
49 lines (39 loc) · 1.02 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
language: php
sudo: false
php:
- 7.0
- 7.1
matrix:
fast_finish: true
include:
- php: 5.3
- php: 5.4
- php: 5.5
- php: 5.6
- php: hhvm
sudo: required
dist: trusty
group: edge
allow_failures:
- php: 7.0
- php: 7.1
cache:
directories:
- $HOME/.composer/cache
env:
- PATH="$HOME/.composer/vendor/bin:$HOME/vim/bin:$PATH"
install:
- composer self-update --no-progress --no-ansi --no-interaction --profile
- composer global require "friendsofphp/php-cs-fixer"
before_script:
- git clone https://github.com/vim/vim --depth 1 /tmp/vim && cd /tmp/vim && ./configure --prefix=$HOME/vim --with-features=huge && make && make install && cd -
- git clone https://github.com/thinca/vim-themis --branch v1.5.2.1 --single-branch --depth 1 /tmp/vim-themis
script:
- echo $PATH
- composer --version
- php-cs-fixer --version
- vim --cmd version --cmd quit
- /tmp/vim-themis/bin/themis tests/ -r --reporter dot
notifications:
email: false
# vim:fdl=0:sts=2:sw=2:ts=2