forked from yeoman/yeoman.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
46 lines (41 loc) · 1.01 KB
/
.travis.yml
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
46
sudo: false
language: node_js
node_js:
- 6
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: lVmR1xSQrL8NZwfGQgbR9SiwXjmdbCOxZIMmLRE2OZJ01dJ1BjI1g3tfPeV5WvOjvwo7AcoMxQE6C7wuxbnqSPvLLuyvud6irCnFnW3ra9X2iYcwFR/n40b4XBdm1vF35klSSe9KVq3n6oKvZR7dJaEykmKNreUOoqN1zxrY16g=
before_install:
- rvm install 2.1.1
before_script:
- git config --global user.name 'Travis-CI'
- git config --global user.email '[email protected]'
- gem install bundler -v '< 2'
- 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
yarn: true
directories:
- node_modules