Skip to content

Commit

Permalink
Merge pull request #32 from Munter/simpler-travis
Browse files Browse the repository at this point in the history
Try to simplify travis config
  • Loading branch information
Munter committed Oct 17, 2015
2 parents 15b4645 + a86e91d commit 2e6506a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@ cache:
- node_modules
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- libfuse-dev
env: CXX="g++-4.8" CC="gcc-4.8"

before_install: "sudo apt-get update && sudo apt-get install libfuse-dev"
script: "npm run-script travis"
after_success: "<coverage/lcov.info ./node_modules/coveralls/bin/coveralls.js"

Expand Down
8 changes: 4 additions & 4 deletions fixtures/compiled/autoprefixer/unprefixed-myth.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
body {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: -webkit-box;
display: -moz-box;
display: flex;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}

0 comments on commit 2e6506a

Please sign in to comment.