1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

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

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36772 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
shyouhei 2012-08-22 02:38:55 +00:00
parent bf797ed9b0
commit 22a173df3f
2 changed files with 6 additions and 2 deletions

View file

@ -40,8 +40,8 @@ install: "sudo apt-get -qq build-dep ruby1.9.1 2>/dev/null"
before_script: before_script:
- "autoconf" - "autoconf"
- "./configure --with-gcc=$CC" - "./configure --with-gcc=$CC"
- "make -sj miniruby" - "make -s miniruby"
- "make -sj all" - "make -s all"
script: "make test" script: "make test"
# Branch matrix. Not all branches are Travis-ready so we limit branches here. # Branch matrix. Not all branches are Travis-ready so we limit branches here.

View file

@ -1,3 +1,7 @@
Wed Aug 22 11:38:16 2012 URABE Shyouhei <shyouhei@ruby-lang.org>
* .travis.yml (before_script): Turned out that make -j is broken.
Wed Aug 22 11:23:35 2012 Shugo Maeda <shugo@ruby-lang.org> Wed Aug 22 11:23:35 2012 Shugo Maeda <shugo@ruby-lang.org>
* vm_insnhelper.c (vm_setup_method): should not enable tail call * vm_insnhelper.c (vm_setup_method): should not enable tail call