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

ruby-changes:41452

From: hsbt <ko1@a...>
Date: Wed, 13 Jan 2016 17:15:15 +0900 (JST)
Subject: [ruby-changes:41452] hsbt:r53526 (trunk): * .travis.yml: removed osx code. follow up with r53517

hsbt	2016-01-13 17:15:39 +0900 (Wed, 13 Jan 2016)

  New Revision: 53526

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

  Log:
    * .travis.yml: removed osx code. follow up with r53517

  Modified files:
    trunk/.travis.yml
    trunk/ChangeLog
Index: ChangeLog
===================================================================
--- ChangeLog	(revision 53525)
+++ ChangeLog	(revision 53526)
@@ -1,3 +1,7 @@ https://github.com/ruby/ruby/blob/trunk/ChangeLog#L1
+Wed Jan 13 17:14:54 2016  SHIBATA Hiroshi  <hsbt@r...>
+
+	* .travis.yml: removed osx code. follow up with r53517
+
 Wed Jan 13 16:56:19 2016  Nobuyoshi Nakada  <nobu@r...>
 
 	* iseq.c (rb_iseq_mark): mark parent iseq to prevent dynamically
Index: .travis.yml
===================================================================
--- .travis.yml	(revision 53525)
+++ .travis.yml	(revision 53526)
@@ -24,11 +24,9 @@ sudo: false https://github.com/ruby/ruby/blob/trunk/.travis.yml#L24
 # The value set here is visible via $CC environment variable.
 compiler:
   - gcc
-#  - clang
 
 os:
   - linux
-#  - 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
@@ -41,17 +39,12 @@ before_install: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L39
 #  - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq --only-upgrade install '^libssl.*'; fi"
 #  - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq install $CC; fi" # upgrade if any
   - "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then JOBS='-j 4'; fi"
-  - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then brew install autoconf gdbm openssl; fi"
-  - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then CONFIG_FLAG=\"$CONFIG_FLAG --with-gdbm-dir=`brew --prefix gdbm`\"; fi"
-  - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then CONFIG_FLAG=\"$CONFIG_FLAG --with-openssl-dir=`brew --prefix openssl`\"; fi"
-  - "if [[ $TRAVIS_OS_NAME = 'osx' && $CC = 'gcc' ]]; then CC='gcc-4.9'; fi"
 #install: "if [[ $TRAVIS_OS_NAME = 'linux' ]]; then sudo apt-get -qq build-dep ruby1.9.1 2>/dev/null; fi"
 
 # Script is where the test runs.  Note  we just do "make test", not other tests
 # like  test-all, test-rubyspec.   This is  because  they take  too much  time,
 # enough for Travis to shut down the VM as being stalled.
 before_script:
-  - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then rm -f ~/Library/Logs/DiagnosticReports/ruby_*.crash; fi"
   - "uname -a"
   - "uname -r"
   - "rm -fr .ext autom4te.cache"
@@ -67,13 +60,10 @@ before_script: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L60
   - "make after-update BASERUBY=ruby"
   - "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:
   - "make test TESTOPTS=--color=never"
   - "make test-all TESTOPTS='-q -j3 --color=never --job-status=normal'"
   - "make test-rubyspec MSPECOPT=-fm"
-after_failure:
-  - "if [[ $TRAVIS_OS_NAME = 'osx' ]]; then find ~/Library/Logs/DiagnosticReports -type f -name ruby_\\*.crash -ls -execdir cat {} \\; -delete; fi"
 
 # Branch matrix.  Not all branches are Travis-ready so we limit branches here.
 branches:

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

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