2013-05-12 22:15:35 +02:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
|
|
- "0.10"
|
2013-10-29 21:54:37 +01:00
|
|
|
env:
|
2014-03-25 13:42:52 +01:00
|
|
|
- DB=sqlite3 NODE_ENV=testing
|
|
|
|
- DB=mysql NODE_ENV=testing-mysql
|
|
|
|
- DB=pg NODE_ENV=testing-pg
|
2013-11-25 01:29:24 +01:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
2014-03-25 13:42:52 +01:00
|
|
|
- env: DB=pg NODE_ENV=testing-pg
|
2013-08-26 23:28:41 +02:00
|
|
|
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
|
2013-08-26 23:28:41 +02:00
|
|
|
- export PATH=$PATH:`pwd`/bin
|
|
|
|
- cd -
|
2014-03-25 13:42:52 +01:00
|
|
|
- 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
|
2013-05-29 20:26:08 +02:00
|
|
|
before_script:
|
2013-08-26 23:28:41 +02:00
|
|
|
- phantomjs --version
|
|
|
|
- casperjs --version
|
2014-02-19 04:41:21 +01:00
|
|
|
- grunt init
|