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

ruby-changes:55169

From: k0kubun <ko1@a...>
Date: Fri, 29 Mar 2019 21:55:11 +0900 (JST)
Subject: [ruby-changes:55169] k0kubun:r67376 (trunk): Debug make install instead of make

k0kubun	2019-03-29 21:55:07 +0900 (Fri, 29 Mar 2019)

  New Revision: 67376

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

  Log:
    Debug make install instead of make
    
    Actually what has randomly failed was `make install`:
    https://travis-ci.org/ruby/ruby/jobs/512988177

  Modified files:
    trunk/.travis.yml
Index: .travis.yml
===================================================================
--- .travis.yml	(revision 67375)
+++ .travis.yml	(revision 67376)
@@ -357,8 +357,9 @@ before_script: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L357
   - rm -rf ~/config_2nd
   - mv ../config_2nd ~
   - chmod u-w ..
+  - $SETARCH make -s $JOBS
   - |-
-    if ! $SETARCH make -s $JOBS; then
+    if ! make install; then
       if [ "$(uname)" = Darwin ]; then
         # Debugging "Permission defined" failure on darwin like https://travis-ci.org/ruby/ruby/jobs/508683759
         set -x
@@ -370,7 +371,6 @@ before_script: https://github.com/ruby/ruby/blob/trunk/.travis.yml#L371
       fi
       exit 1
     fi
-  - make install
   - ccache --show-stats
   - |-
     [ -z "${GEMS_FOR_TEST}" ] ||

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

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