Mailspring/.travis.yml
Matt Bilker 3d69b76823 fix(travis): disable node 4 for now
throws errors everywhere regarding the compiler, nan, and node 4.1.2
2015-10-07 22:52:20 -04:00

35 lines
591 B
YAML

env:
global:
- NYLAS_ACCESS_TOKEN=cb200be7c921f73a1c35930f6a4ac8758b271be0
compiler: clang
matrix:
include:
- os: linux
env: NODE_VERSION=0.10
- os: linux
env: NODE_VERSION=0.12
- os: osx
env: NODE_VERSION=0.10
- os: osx
env: NODE_VERSION=0.12
sudo: false
install:
- git clone https://github.com/creationix/nvm.git /tmp/.nvm
- source /tmp/.nvm/nvm.sh
- nvm install $NODE_VERSION
- nvm use $NODE_VERSION
script: script/cibuild
addons:
apt:
packages:
- build-essential
- git
- libgnome-keyring-dev
- fakeroot