aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-12 17:10:27 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-01-12 17:10:27 +0000
commit6d90157aafb41bac9c6c818eff184ffd21f11227 (patch)
treebe948601eb44a7bc9f835aa2d7b9cb5f13574df1 /.travis.yml
parent66db0527a55ffbb0145b16dd5d8c72faef8b7b97 (diff)
downloadruby-6d90157aafb41bac9c6c818eff184ffd21f11227.tar.gz
drop osx and clang because they are often fails and slow
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53517 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml9
1 files changed, 4 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml
index 2194af2629..5ffccb9b26 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,11 +23,11 @@ language: c
# The value set here is visible via $CC environment variable.
compiler:
- gcc
- - clang
+# - clang
os:
- linux
- - osx
+# - osx
# Dependencies. Some header files are missing in a Travis' worker VM, so we
# have to install them. The "1.9.1" here is OK. It is the most adopted
@@ -63,8 +63,7 @@ before_script:
- "cp -pr config.status .ext/include config_2nd"
- "diff -ru config_1st config_2nd"
- "make after-update BASERUBY=ruby"
- - "make -s $JOBS encs"
- - "make -s $JOBS exts"
+ - "make -s $JOBS"
- "make update-rubyspec"
- "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then echo 'exclude :test_deadlock_by_signal_at_forking, \"under investigation\"' >> test/excludes/TestProcess.rb; fi"
script:
@@ -90,7 +89,7 @@ notifications:
- "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
+ on_failure: always # [always|never|change] # default: always
template:
- "%{message} by @%{author}: See %{build_url}"