mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2024-12-28 17:02:24 -05:00
Travis CI: More work at getting the right fonts installed for the tests to pass.
This commit is contained in:
parent
567f286774
commit
aa192d8388
2 changed files with 13 additions and 2 deletions
12
.travis.yml
12
.travis.yml
|
@ -1,6 +1,7 @@
|
|||
language: node_js
|
||||
node_js:
|
||||
- "4"
|
||||
- 'stable'
|
||||
- '4'
|
||||
sudo: false
|
||||
env:
|
||||
- CXX=g++-4.9
|
||||
|
@ -15,7 +16,16 @@ addons:
|
|||
- libssl-dev
|
||||
- libjpeg62-dev
|
||||
- libgif-dev
|
||||
before_script:
|
||||
- npm install -g gulp
|
||||
- npm install
|
||||
script:
|
||||
- npm run lint
|
||||
- gulp minify
|
||||
- gulp test
|
||||
install:
|
||||
- |
|
||||
wget http://sourceforge.net/p/tellmatic/git/ci/master/tree/img/arial.ttf?format=raw -O Arial.ttf
|
||||
mkdir -p ~/.fonts
|
||||
mv Arial.ttf ~/.fonts
|
||||
fc-cache -f -v
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# Paper.js - The Swiss Army Knife of Vector Graphics Scripting
|
||||
# Paper.js - The Swiss Army Knife of Vector Graphics Scripting [![Build Status](https://travis-ci.org/paperjs/paper.js.svg?branch=develop)](https://travis-ci.org/paperjs/paper.js)
|
||||
|
||||
|
||||
If you want to work with Paper.js, simply download the latest "stable" version
|
||||
from [http://paperjs.org/download/](http://paperjs.org/download/)
|
||||
|
|
Loading…
Reference in a new issue