mirror of https://github.com/lukechilds/hdkey.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
583 B
35 lines
583 B
sudo: false
|
|
os:
|
|
- linux
|
|
language: node_js
|
|
node_js:
|
|
- "0.10"
|
|
- "0.11"
|
|
- "0.12"
|
|
- "4"
|
|
- "5"
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- clang-3.5
|
|
- g++-4.8
|
|
before_install:
|
|
- sh -e /etc/init.d/xvfb start
|
|
env:
|
|
global:
|
|
- DISPLAY=:99.0
|
|
- RANDOM_TESTS_REPEAT=100
|
|
matrix:
|
|
- CXX=g++-4.8 TEST_SUITE=unit
|
|
matrix:
|
|
fast_finish: true
|
|
include:
|
|
- os: linux
|
|
node_js: "4"
|
|
env: CXX=g++-4.8 TEST_SUITE=lint
|
|
- os: linux
|
|
node_js: "4"
|
|
env: CXX=clang++ TEST_SUITE=unit
|
|
script: npm run $TEST_SUITE
|
|
|