https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 56527e278d4932bdd788c0f27b3cdf6c0bf26009 authored by gildas on 21 February 2017, 13:01:12 UTC
4.1.2
Tip revision: 56527e2
.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