Currently travis logs all builds from forks to the qemu IRC channel. There is no way to disable such updates in travis at present (see https://github.com/travis-ci/travis-ci/issues/1094). Until such feature is available, let us at-least limit the IRC update to the master branch.
Another alternative is to encrypt the "qemu/qemu" repository so that only the main repository updates are posted on IRC. (ref. https://github.com/facebook/flow/pull/1822). Signed-off-by: Pranith Kumar <bobby.pr...@gmail.com> --- .travis.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index c13881e..f0ca3a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -34,12 +34,16 @@ addons: - sparse - uuid-dev +branches: + only: + - master notifications: irc: channels: - "irc.oftc.net#qemu" on_success: change on_failure: always + env: global: - TEST_CMD="make check" -- 2.9.0