forked from db-migrate/node-db-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
46 lines (37 loc) · 705 Bytes
/
.travis.yml
File metadata and controls
46 lines (37 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
language: node_js
node_js:
- 0.10
- 0.12
- 4.0
- "iojs-1"
- "iojs-2"
- "iojs-3"
- "iojs"
notifications:
email:
recipients:
- magic@wizardtales.com
webhooks:
urls:
- https://webhooks.gitter.im/e/509c88551a18006fe93f
on_success: change
on_failure: always
on_start: false
os:
- linux
matrix:
fast_finish: true
services:
- mongodb
sudo: false
cache:
npm: true
directories:
- node_modules
addons:
mariadb: "10.0"
before_script:
- until nc -z localhost 27017 ; do echo Waiting for MongoDB; sleep 1; done
- mysql -e "create database db_migrate_test;"
- createdb db_migrate_test
- cp test/db.config.ci test/db.config.json