https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 89da28dad15e98cfb4376931bb04c7b1b91c30f9 authored by ThieryMichel on 28 February 2017, 08:15:09 UTC
4.4.7
Tip revision: 89da28d
.travis.yml
language: node_js

node_js:
    - "7.4.0"

services: mongodb

env:
    global:
        - CHROME_BIN="chromium-browser"
        - CXX=g++-4.8
        - DISPLAY=:99.0
        - NODE_ENV=test

dist: trusty

addons:
    apt:
        sources:
            - ubuntu-toolchain-r-test
        packages:
            - gcc-4.8
            - g++-4.8

cache:
    directories:
        - node_modules

before_script:
    - cp ./config/test-dist.js ./config/test.js

before_install:
    - sh -e /etc/init.d/xvfb start
    - sleep 3

install:
    - "make --silent install"
back to top