-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (29 loc) · 845 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
language: node_js
env: SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true
compiler: gcc
node_js:
- 0.10
- node # will fetch the latest node.js version
- iojs # will fetch the latest io.js version
matrix:
fast_finish: true
allow_failures:
- node_js: iojs
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update
- sudo apt-get install gcc-4.7 g++-4.7
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.7 20
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.7 20
- g++ --version
- sudo apt-get update -qq
- git submodule update --init --recursive
after_success: npm run-script coverage
cache:
directories:
- node_modules
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/8dddd234a441d0d07664
on_success: change