Tell Travis-CI to notify only the core team.

Currently it notifies some people but I don't get how they are chosen, it even notifies me on 2 email addresses (my current and my former registered on GitHub)…
This commit is contained in:
Rémy Coutable 2011-09-05 10:16:11 +02:00
parent 3de4f505d6
commit 771c9d08c0
2 changed files with 7 additions and 2 deletions

View File

@ -11,4 +11,9 @@ branches:
- stdin - stdin
- jruby_on_travis - jruby_on_travis
notifications: notifications:
recipients:
- thibaud@thibaud.me
- rymai@rymai.me
- michi@netzpiraten.ch
- yann.lugrin@sans-savoir.net
irc: "irc.freenode.org#guard" irc: "irc.freenode.org#guard"

View File

@ -39,8 +39,8 @@ namespace(:spec) do
echo "`ruby -v`"; echo "`ruby -v`";
for ((c=1; c<$ruby_version_string_size; c++)); do echo -n "="; done for ((c=1; c<$ruby_version_string_size; c++)); do echo -n "="; done
echo; echo;
bundle install; RBXOPT="-Xrbc.db" bundle install;
bundle exec rspec spec -f doc 2>&1;' RBXOPT="-Xrbc.db" bundle exec rspec spec -f doc 2>&1;'
BASH BASH
end end
end end