47e16df196
fixes #4811, refs #4240 - Add v0.12 to the build - Fix express tests to work with iojs/0.12 - Add iojs-v1.2.0 to the build matrix
31 lines
756 B
YAML
31 lines
756 B
YAML
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
- "0.12"
|
|
- "iojs-v1.2.0"
|
|
sudo: false
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
- bower_components
|
|
addons:
|
|
postgresql: "9.3"
|
|
env:
|
|
global:
|
|
- GITHUB_OAUTH_KEY=003a44d58f12089d0c0261338298af3813330949
|
|
matrix:
|
|
- DB=sqlite3 NODE_ENV=testing
|
|
- DB=mysql NODE_ENV=testing-mysql
|
|
- DB=pg NODE_ENV=testing-pg
|
|
before_install:
|
|
- git clone git://github.com/n1k0/casperjs.git ~/casperjs
|
|
- cd ~/casperjs
|
|
- 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 psql -c 'create database ghost_testing;' -U postgres; fi
|
|
before_script:
|
|
- phantomjs --version
|
|
- casperjs --version
|