2014-10-27 16:07:07 -04:00
|
|
|
language: node_js
|
|
|
|
|
|
|
|
node_js:
|
|
|
|
- "0.11"
|
|
|
|
- "0.10"
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- psql -c 'DROP DATABASE IF EXISTS test;' -U postgres
|
|
|
|
- psql -c 'create database test;' -U postgres
|
|
|
|
- mysql -e 'create database IF NOT EXISTS test;'
|
2014-10-27 16:41:32 -04:00
|
|
|
- mysql -v -uroot test < ./tests/sql/mysql.sql
|
2014-10-27 16:19:42 -04:00
|
|
|
- psql test postgres -f ./tests/sql/pgsql.sql
|