summaryrefslogtreecommitdiffstats
path: root/.travis.yml
blob: 84679401bccb4cb74d4b87f11ea93c2c11b2bde2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: php
php:
  - 5.3
  - 5.4
  - 5.5

before_install:
  - git clone https://github.com/owncloud/core.git
  - cd core
  - git submodule init
  - git submodule update
  - cd apps
  - git clone https://github.com/owncloud/appframework

script:
  - 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
  - make unit-tests && make javascript-tests