[前][次][番号順一覧][スレッド一覧]

ruby-changes:41443

From: naruse <ko1@a...>
Date: Wed, 13 Jan 2016 02:10:04 +0900 (JST)
Subject: [ruby-changes:41443] naruse:r53517 (trunk): drop osx and clang because they are often fails and slow

naruse	2016-01-13 02:10:27 +0900 (Wed, 13 Jan 2016)

  New Revision: 53517

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=53517

  Log:
    drop osx and clang because they are often fails and slow

  Modified files:
    trunk/.travis.yml
Index: .travis.yml
===================================================================
--- .travis.yml	(revision 53516)
+++ .travis.yml	(revision 53517)
@@ -23,11 +23,11 @@ language: c https://github.com/ruby/ruby/blob/trunk/.travis.yml#L23
 # 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: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L63
   - "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: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L89
       - "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}"
 

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]