travis.yml: run test-bot on Linux.

This should verify that we're not breaking our tests on Linux.
This commit is contained in:
Mike McQuaid 2016-07-27 21:46:06 -06:00
parent 569c80323b
commit bcee1e0841

View File

@ -1,30 +1,18 @@
language: ruby language: ruby
os: osx rvm: 2.0.0
env: OSX=10.11 os: linux
osx_image: xcode7.3
rvm: system matrix:
include:
- os: osx
env: OSX=10.11
osx_image: xcode7.3
rvm: system
before_install: before_install:
- export TRAVIS_COMMIT=$(git rev-parse --verify -q HEAD) - export HOMEBREW_DEVELOPER=1
- cd /usr/local - export PATH="bin:$PATH"
- sudo rm -rf /usr/local/.git/refs /usr/local/.git/packed-refs /usr/local/Library - umask 022
- sudo rsync -az "$TRAVIS_BUILD_DIR/" /usr/local/
- sudo chown -R $USER /usr/local
- export TRAVIS_BUILD_DIR="/usr/local"
- if [ -f ".git/shallow" ]; then
travis_retry git fetch --unshallow;
fi
- git reset --hard $TRAVIS_COMMIT
- git clean -qxdff
- export HOMEBREW_DEVELOPER="1"
- ulimit -n 1024
script: script:
- brew test-bot - brew test-bot
notifications:
slack:
secure: Y5ZL6OcprSzAYQ3yVpvrhiQn1UQGd7reKNz3o7+7Bcy2k7DMr66xKBadTv1gK1Qrg9LugsmZ4CqOqKBwy7t5smktan/wsUo5y5HX3WUOG1nk0jQ4HOOZNT8bhUZc/Eu7ilH5UMqvIVsjrX9BjEZMeT4TxTIUD8zj5xUwgiAsD5k=
email:
on_success: never
on_failure: always