https://github.com/Inist-CNRS/lodex
Raw File
Tip revision: 89446bf9b93797488c9dadbc8ef4196cbf82f358 authored by ThieryMichel on 28 February 2017, 15:57:05 UTC
4.5.0
Tip revision: 89446bf
.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