-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy path.travis.yml
More file actions
48 lines (38 loc) · 676 Bytes
/
.travis.yml
File metadata and controls
48 lines (38 loc) · 676 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
47
48
language: node_js
node_js:
- 8
- node
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:
allow_failures:
- node_js: node
fast_finish: true
sudo: false
cache:
npm: true
directories:
- node_modules
services:
- postgresql
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
before_install:
- export CXX=g++-4.8; export CC=gcc-4.8;
before_script:
- createdb db_migrate_test
- cp test/db.config.ci test/db.config.json