Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add getSenders and getReceivers #93

Merged
merged 2 commits into from Dec 4, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
60 changes: 27 additions & 33 deletions .travis.yml
@@ -1,51 +1,45 @@
sudo: false

filter_secrets: false
language: node_js

node_js:
- 6
- 7

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

cache:
directories:
- node_modules
- pulseaudio

env:
global:
- CXX=g++-4.8
matrix:
- BROWSER=chrome BVER=stable
- BROWSER=chrome BVER=beta
- BROWSER=chrome BVER=unstable
- BROWSER=firefox BVER=stable
- BROWSER=firefox BVER=beta
- BROWSER=firefox BVER=unstable
- DBUS_SESSION_BUS_ADDRESS=/dev/null
- DISPLAY=:99.0

matrix:
fast_finish: true
include:
- os: linux
env: BROWSER=chrome BVER=stable

allow_failures:
- env: BROWSER=chrome BVER=unstable
- env: BROWSER=firefox BVER=unstable
- os: linux
env: BROWSER=chrome BVER=beta

before_script:
- ./node_modules/travis-multirunner/setup.sh
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- os: linux
env: BROWSER=firefox BVER=stable

after_failure:
- for file in *.log; do echo $file; echo "======================"; cat $file; done || true
- os: linux
env: BROWSER=firefox BVER=beta

before_script:
- |
set -e
cd node_modules/travis-multirunner
BROWSER=chrome ./setup.sh
BROWSER=firefox ./setup.sh
export CHROME_BIN=$(pwd)/browsers/bin/chrome-$BVER
export FIREFOX_BIN=$(pwd)/browsers/bin/firefox-$BVER
cd ../..
if [ "${TRAVIS_OS_NAME}" == 'linux' ]; then
sh -e /etc/init.d/xvfb start
pulseaudio --start
fi
script:
- npm run lint
- npm run test-travis

notifications:
email:
- build@andyet.com