Skip to content

Commit

Permalink
Cleanup the Travis IRC notifications on builds to only show changes i…
Browse files Browse the repository at this point in the history
…n status and use notify
  • Loading branch information
larsbergstrom committed Jun 23, 2014
1 parent 71b3135 commit a51c9ec
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .travis.yml
Expand Up @@ -5,26 +5,27 @@ os:
- osx

install:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.install.deps.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.install.deps.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./travis.osx.install.deps.sh; fi

before_script:
- mkdir -p build

script:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.script.sh; fi
script:
- if [ "${TRAVIS_OS_NAME}" = "linux" ]; then ./travis.linux.script.sh; fi
- if [ "${TRAVIS_OS_NAME}" = "osx" ]; then ./travis.osx.script.sh; fi

git:
submodules: true

notifications:
irc: "irc.mozilla.org#servo"
irc:
channels: "irc.mozilla.org#servo"
on_success: change
on_failure: change
use_notice: true
email: false

branches:
only:
- travis
- master

after_success:

0 comments on commit a51c9ec

Please sign in to comment.