From 771c9d08c006c902bb94266072b89d88a0215e9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Re=CC=81my=20Coutable?= Date: Mon, 5 Sep 2011 10:16:11 +0200 Subject: [PATCH] Tell Travis-CI to notify only the core team. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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)… --- .travis.yml | 5 +++++ Rakefile | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index a40ef5a..b83b523 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,4 +11,9 @@ branches: - stdin - jruby_on_travis notifications: + recipients: + - thibaud@thibaud.me + - rymai@rymai.me + - michi@netzpiraten.ch + - yann.lugrin@sans-savoir.net irc: "irc.freenode.org#guard" diff --git a/Rakefile b/Rakefile index d1b2f28..c64d98e 100644 --- a/Rakefile +++ b/Rakefile @@ -39,8 +39,8 @@ namespace(:spec) do echo "`ruby -v`"; for ((c=1; c<$ruby_version_string_size; c++)); do echo -n "="; done echo; - bundle install; - bundle exec rspec spec -f doc 2>&1;' + RBXOPT="-Xrbc.db" bundle install; + RBXOPT="-Xrbc.db" bundle exec rspec spec -f doc 2>&1;' BASH end end