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

ruby-changes:24721

From: shyouhei <ko1@a...>
Date: Wed, 22 Aug 2012 11:39:10 +0900 (JST)
Subject: [ruby-changes:24721] shyouhei:r36772 (trunk): * .travis.yml (before_script): Turned out that make -j is broken.

shyouhei	2012-08-22 11:38:55 +0900 (Wed, 22 Aug 2012)

  New Revision: 36772

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=36772

  Log:
    * .travis.yml (before_script): Turned out that make -j is broken.

  Modified files:
    trunk/.travis.yml
    trunk/ChangeLog

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 36771)
+++ ChangeLog	(revision 36772)
@@ -1,3 +1,7 @@
+Wed Aug 22 11:38:16 2012  URABE Shyouhei  <shyouhei@r...>
+
+	* .travis.yml (before_script): Turned out that make -j is broken.
+
 Wed Aug 22 11:23:35 2012  Shugo Maeda  <shugo@r...>
 
 	* vm_insnhelper.c (vm_setup_method): should not enable tail call
Index: .travis.yml
===================================================================
--- .travis.yml	(revision 36771)
+++ .travis.yml	(revision 36772)
@@ -40,8 +40,8 @@
 before_script:
   - "autoconf"
   - "./configure --with-gcc=$CC"
-  - "make -sj miniruby"
-  - "make -sj all"
+  - "make -s miniruby"
+  - "make -s all"
 script: "make test"
 
 # Branch matrix.  Not all branches are Travis-ready so we limit branches here.

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

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