summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-18 13:55:45 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-04-18 13:55:45 +0000
commit08a6ef733a0b71b6b77488266e9d3ba39cec9622 (patch)
tree9ec04593ed24f9ab480eb99034d5617cd3202644 /.travis.yml
parent335dfa1255eb38d765d3b35d8b9f9d176eb5e830 (diff)
Run test-all on travis-ci
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40347 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml30
1 files changed, 16 insertions, 14 deletions
diff --git a/.travis.yml b/.travis.yml
index db25c9eb08..182cca291f 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -42,24 +42,26 @@ before_script:
- "./configure --with-gcc=$CC"
- "make -sj encs"
- "make -sj exts"
-script: "make test OPTS=-v"
+script:
+ - "make test OPTS=-v"
+ - "make test-all TESTS=-v"
# Branch matrix. Not all branches are Travis-ready so we limit branches here.
-branches:
- only:
- - trunk
- - ruby_1_9_3
+# branches:
+# only:
+# - trunk
+# - ruby_1_9_3
# We want to be notified when something happens.
-notifications:
- irc:
- channels:
- - "irc.freenode.org#ruby-core"
- - "irc.freenode.org#ruby-ja"
- on_success: change # [always|never|change] # default: always
- on_failure: change # [always|never|change] # default: always
- template:
- - "%{message} by @%{author}: See %{build_url}"
+# notifications:
+# irc:
+# channels:
+# - "irc.freenode.org#ruby-core"
+# - "irc.freenode.org#ruby-ja"
+# on_success: change # [always|never|change] # default: always
+# on_failure: change # [always|never|change] # default: always
+# template:
+# - "%{message} by @%{author}: See %{build_url}"
# Local Variables:
# mode: YAML