-
Notifications
You must be signed in to change notification settings - Fork 17
/
.travis.yml
52 lines (46 loc) · 961 Bytes
/
.travis.yml
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
49
50
51
52
language: node_js
node_js:
- '10'
- '9'
- '8'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
services:
- mongodb
- postgresql
- redis-server
notifications:
irc:
channels:
- "irc.freenode.org#periodicjs"
template:
- "Build by %{author} :"
- "Git Info: %{branch} - %{commit} with the message %{commit_message}"
- "Travis states: %{message}"
- "Build Details: %{build_url}"
- "Change View: %{compare_url}"
- "result = %{result}"
- "elapsed time... %{duration}"
use_notice: true
skip_join: false
install:
- npm install grunt-cli istanbul -g
- npm install
# - npm install --skip_app_post_install=true
branches:
only:
- master
- periodic10
- devel
git:
submodules: false
before_script:
- psql -c 'create database travis_ci_test;' -U postgres
script:
- npm set progress=false && grunt test