forked from mainmatter/ember-cookies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
66 lines (56 loc) · 2.11 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
---
language: node_js
node_js:
- "stable"
- "4"
sudo: required
dist: trusty
addons:
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
cache:
directories:
- $HOME/.npm
- $HOME/.cache # includes bowers cache
env:
# we recommend testing LTS's and latest stable release (bonus points to beta/canary)
- EMBER_TRY_SCENARIO=ember-1.13
- EMBER_TRY_SCENARIO=ember-lts-2.4
- EMBER_TRY_SCENARIO=ember-lts-2.8
- EMBER_TRY_SCENARIO=ember-release
- EMBER_TRY_SCENARIO=ember-beta
- EMBER_TRY_SCENARIO=ember-canary
- EMBER_TRY_SCENARIO=ember-default
matrix:
fast_finish: true
allow_failures:
- env: EMBER_TRY_SCENARIO=ember-canary
before_install:
- "export DISPLAY=:99.0"
- "sh -e /etc/init.d/xvfb start"
- npm config set spin false
- npm install -g bower
install:
- npm install
- bower install
script:
# Usually, it's ok to finish the test scenario without reverting
# to the addon's original dependency state, skipping "cleanup".
- node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO test --skip-cleanup
deploy:
provider: npm
email: [email protected]
api_key:
secure: uzNzJx1gtduJfK/W2rKaSjwQOF/0tm1NbCJPACnNEJfPjI5Bg/NBTh1WVxe+psmcAhawt9xO9z+sfeyzWTyhzph1dma8iFvrT/0BMtMM8lC0waHqN03BcfP/WjNJn07GdISBlZM5XVrebMOvqXDBFME7rsgRRkkKyymQwEgXB7jYyS+e0JH2iURLSyZNYukY6vx6D7nITTBUXYmYtfsbZMyz5v7y2Qzp941gaUTPRGrjnuKWIz1GXo5FxuxHswrbG1xjrckrKpc1lOMe0kh7EHgD6fCLFf2VOCsPq6kKsGh0nJJ2kAemoyVTyuH560+dW5ctyxOENKYHjBlExOpit9fghup+U33Es0xWcsnJzEXvbw0bu1g/hhLemOFUJ/GeSRH2EN3SK0q7t6wie5S20ZRwhHQkoP5OYC/v6pHXcR5J5b4GWa3INa2QB+ZegO8jDatB/31NGILJEXhwQP0A8/NssiUQV877cc6qbSQ7BWAky72QLq0uA65B8vVLBi1PsI4wk+I9IM88cnW1iCfatqx9F2jAh/ACMpLgD+RJtEhvwgeieOHQzfs1W48McHAFO+VeU31ePhT2duujQD72yESaMzxqt1yAcZYv0Ul2JFsb38M6k3/a/ciicLpEj0x7ttOYZQp3oF3Z5kIylPkTkk3I22VmByysO42HJAPl1nA=
on:
tags: true
repo: simplabs/ember-cookies
notifications:
email: false
slack:
rooms:
secure: OOKD4ZksqzEBW/A3WRuOToODIxnDITqx+Esu7tdmmYPuQlMYgx4SUHv8j9OM9/ScFJiseeVGSkl45vJrHLLIITX9XSjO1RgiGZgw2heVujmGpF6CZNqvT6GsQuKIvMzmwF7IxuHdfV45Csr9Ou/Fg74TszR/4S2h4SOI4zhLg7A=
on_success: never