mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-01 02:38:43 -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
|
language: node_js
|
||||||
node_js:
|
node_js:
|
||||||
- "4"
|
- 'stable'
|
||||||
|
- '4'
|
||||||
sudo: false
|
sudo: false
|
||||||
env:
|
env:
|
||||||
- CXX=g++-4.9
|
- CXX=g++-4.9
|
||||||
|
@ -15,7 +16,16 @@ addons:
|
||||||
- libssl-dev
|
- libssl-dev
|
||||||
- libjpeg62-dev
|
- libjpeg62-dev
|
||||||
- libgif-dev
|
- libgif-dev
|
||||||
|
before_script:
|
||||||
|
- npm install -g gulp
|
||||||
|
- npm install
|
||||||
script:
|
script:
|
||||||
- npm run lint
|
- npm run lint
|
||||||
- gulp minify
|
- gulp minify
|
||||||
- gulp test
|
- 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
|
If you want to work with Paper.js, simply download the latest "stable" version
|
||||||
from [http://paperjs.org/download/](http://paperjs.org/download/)
|
from [http://paperjs.org/download/](http://paperjs.org/download/)
|
||||||
|
|
Loading…
Reference in a new issue