forked from greg0ire/git_template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
26 lines (25 loc) · 789 Bytes
/
.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
branches:
only:
- master
sudo: false
language: php # that way we get composer
php:
- 5.4
install:
- git config --global init.templatedir "$(pwd)/template"
- git config --global user.email "travis@mailinator.com"
- git config --global user.name "Travis Bot"
- "mkdir -p ~/src/shunit2"
- "git clone git://github.com/deniscostadsc/shunit2.git ~/src/shunit2"
- "svn checkout https://svn.code.sf.net/p/ctags/code/trunk ~/src/ctags"
- "cd ~/src/ctags"
- wget http://sourceforge.net/p/ctags/patches/_discuss/thread/3a930d9f/1405/attachment/0000-PHP-parser-rewrite.patch
- patch -p1 < 0000-PHP-parser-rewrite.patch
- autoconf
- autoheader
- ./configure
- make
- chmod +x ctags
- cd -
script:
- "export PATH=~/src/shunit2:~/src/ctags:$PATH && tests/all.sh"