-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
45 lines (40 loc) · 1021 Bytes
/
.travis.yml
File metadata and controls
45 lines (40 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
sudo: false
language: node_js
node_js:
- '4.2'
branches:
only:
- source
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-4.8
- g++-4.8
- libcairo2-dev
- libjpeg8-dev
- libgif-dev
- libpango1.0-dev
- graphicsmagick
- libjpeg-turbo-progs
- inkscape
env:
global:
- CXX='g++-4.8'
- CC='gcc-4.8'
- secure: bAdIqjrnU4Vcsa1vF7svhbOq4FRkPUbmbELjMmOdU+nxdZNRQozc6ioVNa/mQZOlW33vgSiFfS9V+qJdWsEe4UjlTlwD5CHXnvc0+279wRhFSZ+MyM3M+YEE1/sMX7dRxHCamSwbz3OSYTatte4yTzt4VnW9eoBYq347aBvw5Fc=
before_install:
- rvm install 2.1.1
before_script:
- git config --global user.name 'Travis-CI'
- git config --global user.email 'travis@yeoman.io'
- gem install bundler
- bundle install
# Silent the script output, we don't want any key made public in the Travis log
script: npm run-script deploy
# Compiling a lot of our dependencies takes forever. We're caching them
cache:
bundler: true
directories:
- node_modules