2
1
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2023-12-13 21:00:40 +01:00
Ghost/.travis.yml

29 lines
716 B
YAML
Raw Normal View History

language: node_js
node_js:
- "0.10"
2014-07-14 07:06:21 +02:00
sudo: false
2014-07-14 09:12:56 +02:00
cache:
directories:
- node_modules
2014-07-14 11:17:12 +02:00
- bower_components
2014-08-01 00:07:36 +02:00
addons:
postgresql: "9.3"
env:
- DB=sqlite3 NODE_ENV=testing
- DB=mysql NODE_ENV=testing-mysql
- DB=pg NODE_ENV=testing-pg
matrix:
allow_failures:
- env: DB=pg NODE_ENV=testing-pg
before_install:
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
- cd ~/casperjs
2014-01-01 14:31:55 +01:00
- git checkout tags/1.1-beta3
- export PATH=$PATH:`pwd`/bin
- cd -
- if [ $DB == "mysql" ]; then mysql -e 'create database ghost_testing'; fi
- if [ $DB == "pg" ]; then npm install pg; psql -c 'create database ghost_testing;' -U postgres; fi
before_script:
- phantomjs --version
2014-07-14 07:06:21 +02:00
- casperjs --version