diff options
author | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2016-10-12 08:46:32 -0200 |
---|---|---|
committer | dotnetCarpenter <jon.ronnenberg@gmail.com> | 2016-10-12 08:46:32 -0200 |
commit | 01ec93a885d5f55695dd178ef9416c7b20024204 (patch) | |
tree | a294e417b1c74eb9f99daa77f3c7dccaf07996a9 /.travis.yml | |
parent | 966c3a99b9f981c4b206390944fa058e093f2eef (diff) | |
download | svg.js-01ec93a885d5f55695dd178ef9416c7b20024204.tar.gz svg.js-01ec93a885d5f55695dd178ef9416c7b20024204.zip |
use a newer ubuntu image and the latest firefox (49.0)
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/.travis.yml b/.travis.yml index b5c6ce2..a04e558 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,16 +2,11 @@ language: node_js node_js: - "node" script: npm test -# sudo is needed to install the newest firefox -sudo: true +sudo: required +dist: trusty +addons: + firefox: "49.0" before_install: - - firefox -v - # install newest firefox - - sudo add-apt-repository -y ppa:mozillateam/firefox-next - - sudo apt-get update - #- sudo apt-get -q update - - sudo apt-get install -y firefox - - firefox -v # Start a display server where all graphical operations happens in memory - export DISPLAY=:99.0 - sh -e /etc/init.d/xvfb start |