[Groonga-mysql-commit] mroonga/mroonga at 332406d [master] travis: disable concurrency build for MariaDB bundled build

Back to archive index

Kouhei Sutou null+****@clear*****
Sun Sep 14 11:43:06 JST 2014


Kouhei Sutou	2014-09-14 11:43:06 +0900 (Sun, 14 Sep 2014)

  New Revision: 332406da8e9d2210007418ef428b8782550d1c97
  https://github.com/mroonga/mroonga/commit/332406da8e9d2210007418ef428b8782550d1c97

  Message:
    travis: disable concurrency build for MariaDB bundled build
    
        make[3]: warning: jobserver unavailable: using -j1.  Add `+' to parent make rule.

  Modified files:
    tools/travis/script.sh

  Modified: tools/travis/script.sh (+8 -4)
===================================================================
--- tools/travis/script.sh    2014-09-14 11:30:19 +0900 (cc33c35)
+++ tools/travis/script.sh    2014-09-14 11:43:06 +0900 (04670bc)
@@ -31,10 +31,14 @@ else
     . "${top_dir}/config.sh"
 fi
 
-n_processors="$(grep '^processor' /proc/cpuinfo | wc -l)"
-max_n_processors=8
-if (( $n_processors > $max_n_processors )); then
-    n_processors=$max_n_processors
+if [ "${MROONGA_BUNDLED}" = "yes" ]; then
+    n_processors=1
+else
+    n_processors="$(grep '^processor' /proc/cpuinfo | wc -l)"
+    max_n_processors=8
+    if (( $n_processors > $max_n_processors )); then
+	n_processors=$max_n_processors
+    fi
 fi
 
 build()
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-mysql-commit mailing list
Back to archive index