ruby-changes:52924
From: k0kubun <ko1@a...>
Date: Thu, 18 Oct 2018 00:42:42 +0900 (JST)
Subject: [ruby-changes:52924] k0kubun:r65138 (trunk): .travis.yml: revert r65131 too
k0kubun 2018-10-18 00:42:34 +0900 (Thu, 18 Oct 2018) New Revision: 65138 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=65138 Log: .travis.yml: revert r65131 too because it succeeded https://travis-ci.org/ruby/ruby/jobs/442733840. It looks that it randomly succeeds. Let's just leave it and see how stable it is, starting from `allow_failures` because it hasn't hanged only once so far. Modified files: trunk/.travis.yml Index: .travis.yml =================================================================== --- .travis.yml (revision 65137) +++ .travis.yml (revision 65138) @@ -70,15 +70,15 @@ matrix: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L70 install: before_script: chmod -R u+w spec/ruby script: ruby -C spec/ruby ../mspec/bin/mspec -j . + allow_failures: + # It randomly hangs on travis osx. Let's remove this from allow_failures once it gets stable. + - os: osx before_install: | : ${CONFIG_FLAG=} case "$TRAVIS_OS_NAME" in - linux) JOBS=-j`nproc` - TEST_ALL_JOBS="$JOBS" ;; + linux) JOBS=-j`nproc` ;; osx) JOBS=-j`sysctl -n hw.activecpu` - : parallel test-all hangs on travis osx build for now. - TEST_ALL_JOBS="" : Bare "brew update" nukes everything. : These steps are very carefully chosen to avoid breaking things. brew_core_dir=/usr/local/Homebrew/Library/Taps/homebrew/homebrew-core/ @@ -119,7 +119,7 @@ before_script: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L119 script: - "make -s test TESTOPTS=--color=never" - - "make -s $TEST_ALL_JOBS test-all -o exts TESTOPTS='-q --color=never --job-status=normal' RUBY_FORCE_TEST_JIT=1" + - "make -s $JOBS test-all -o exts TESTOPTS='-q --color=never --job-status=normal' RUBY_FORCE_TEST_JIT=1" - "make -s $JOBS test-spec MSPECOPT=-j" # Branch matrix. Not all branches are Travis-ready so we limit branches here. -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/