summaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 2f564a1109fb296dc77f97292f3299e2ec0fdf4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
language: php
php:
  - "5.3"

services:
  - mysql

before_install:
  - sudo apt-get update -qq
  - sudo apt-get install -qq graphicsmagick imagemagick php5-gd ffmpeg git-core

before_script:
  - mysql -e 'create database gallery3; create database gallery3_test;'
  - cat `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"` | sed -e "s/short_open_tag = Off/short_open_tag = On/ig" > `php --ini | grep "Loaded Configuration" | sed -e "s|.*:\s*||"`
  - php ./installer/index.php

script:
  - 'php index.php test'