forked from sass/node-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
33 lines (31 loc) · 773 Bytes
/
Copy path.travis.yml
File metadata and controls
33 lines (31 loc) · 773 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
language: node_js
env:
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true
compiler:
- gcc
node_js:
- "0.10"
- "0.11"
matrix:
fast_finish: true
allow_failures:
- node_js: "0.11"
before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test;
- sudo apt-get update;
- sudo apt-get install gcc-4.8 g++-4.8;
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 20;
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 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