forked from mike-north/druid-dashboard-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
42 lines (41 loc) · 1.14 KB
/
.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
language: node_js
node_js:
- '0.12'
sudo: false
cache:
directories:
- node_modules
env:
matrix:
- EMBER_TRY_SCENARIO=default
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
global:
- secure: P1o4MsbYAzelhbGyiwU4qEkFtudvUGKEmiPjNR/R3gQ1cQNIWAvWxCJL6SlkCrrws9ZfqfjhCvnI5BwHZLR0Mv3YbYb3ok9Cfm+SHyyp+ZuVbXg77iEMHtlNyQnUBpL7WLhfQHw+JV5h22q1emcp900oBZvqj78bE1Mgw9ps1rA=
- secure: onuWx8WBnh36/cjEqnLVW1Rd8FnplN17lenPYthshyjOH/FmP3QTcTYw6oFzLE6DXFmVja7RkY+WHtwxQYtnUuarBKYwQ5y0DfzVq9p3URz8vXPMeXrWMF+fanMV6KlNkTPTN79oFY3R/WBHwWz6KvwDTqaZG+KOjplnne94JCQ=
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- export PATH=/usr/local/phantomjs-2.0.0/bin:$PATH
- npm config set spin false
- npm install -g npm@^2
install:
- npm install -g bower
- npm install
- bower install
before_script:
- ember sauce:connect
script:
- ember try $EMBER_TRY_SCENARIO test
after_script:
- ember sauce:disconnect
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/ded8f776cc4787c57dcc
on_success: change
on_failure: always
on_start: never