Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add travis ci #13

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: "node_js"
node_js:
- '0.10'
- '0.11'
script: npm test
before_install:
- BUILD_DIR=`pwd`
- cd /tmp
- wget http://www.vips.ecs.soton.ac.uk/supported/current/vips-7.38.5.tar.gz
- tar xf vips-7.38.5.tar.gz
- cd vips-7.38.5
- ./configure
- make
- sudo make install
- cd $BUILD_DIR
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ Anyone who has used the Node.js bindings for [GraphicsMagick](https://github.com

This module is powered by the blazingly fast [libvips](https://github.com/jcupitt/libvips) image processing library, originally created in 1989 at Birkbeck College and currently maintained by John Cupitt.

[![Build Status](https://secure.travis-ci.org/lovell/sharp.png)](http://travis-ci.org/lovell/sharp)

## Prerequisites

* Node.js v0.8+
Expand Down