Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1117 from xzyfer/feat/new-travis
Browse files Browse the repository at this point in the history
Update to the new Travis CI infrastructure.
  • Loading branch information
xzyfer committed Sep 1, 2015
2 parents 4e5510b + e1d3f33 commit edbf497
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
language: node_js

env: SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true
env: SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true CC=gcc-4.7 CXX=g++-4.7 LINK=gcc-4.7 LINKXX=g++-4.7

compiler: gcc

sudo: false

node_js:
- "0.10"
- "0.12"
Expand All @@ -15,14 +17,16 @@ node_js:
matrix:
fast_finish: true

addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.7
- g++-4.7

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
Expand Down

0 comments on commit edbf497

Please sign in to comment.