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.
21 lines
303 B
21 lines
303 B
language: node_js
|
|
sudo: false
|
|
compiler:
|
|
- gcc
|
|
- clang
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- gcc-4.8
|
|
- g++-4.8
|
|
- clang
|
|
node_js:
|
|
- '4'
|
|
before_install:
|
|
- export CXX="g++-4.8" CC="gcc-4.8"
|
|
install:
|
|
- npm install
|
|
after_success:
|
|
- npm run coveralls
|
|
|