mirror of
https://github.com/lovell/sharp.git
synced 2025-07-15 05:00:14 +02:00
24 lines
473 B
YAML
24 lines
473 B
YAML
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
- "0.12"
|
|
- "4"
|
|
- "5"
|
|
- "6"
|
|
os:
|
|
- linux
|
|
- osx
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|
|
osx_image: xcode7.3
|
|
before_install:
|
|
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then export CXX=g++-4.8; fi
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install homebrew/science/vips; fi
|
|
after_success:
|
|
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
|