Blame view

sources/apps/contacts/.travis.yml 652 Bytes
d1bafeea1   Kload   [fix] Upgrade to ...
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
  language: php
  php:
    - 5.3
    - 5.4
  
  #  - 5.5
  
  branches:
    except:
      - share
  
  env:
      - DB=sqlite
  
  #  - DB=mysql
  #  - DB=pgsql
  
  before_install:
    - ./tests/install_dependencies.sh
    - tests/setup_owncloud.sh
  
  #  - sudo add-apt-repository -y ppa:chris-lea/node.js
  #  - sudo apt-get update
  #  - sudo apt-get -y install nodejs
  #  - wget https://phantomjs.googlecode.com/files/phantomjs-1.9.0-linux-x86_64.tar.bz2
  #  - tar xjf phantomjs-1.9.0-linux-x86_64.tar.bz2
  #  - sudo ln -s $(pwd)/phantomjs-1.9.0-linux-x86_64/bin/phantomjs /usr/bin/phantomjs
  
  script:
    - phpunit --configuration tests/phpunit.xml --testsuite unit-tests
  
  #&& make javascript-tests