[Groonga-mysql-commit] mroonga/mroonga at 7aae107 [master] travis: stop parallel build for bundled build

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Nov 21 16:47:46 JST 2013


Kouhei Sutou	2013-11-21 16:47:46 +0900 (Thu, 21 Nov 2013)

  New Revision: 7aae10733c113a3dae1c5ee996491c3482673b21
  https://github.com/mroonga/mroonga/commit/7aae10733c113a3dae1c5ee996491c3482673b21

  Message:
    travis: stop parallel build for bundled build
    
    It uses many resources. We can use parallel build on Travis CI.

  Modified files:
    tools/travis/script.sh

  Modified: tools/travis/script.sh (+5 -1)
===================================================================
--- tools/travis/script.sh    2013-11-21 01:53:33 +0900 (014f2dc)
+++ tools/travis/script.sh    2013-11-21 16:47:46 +0900 (17150f6)
@@ -21,7 +21,11 @@ set -e
 
 base_dir="$(cd $(dirname $0); pwd)"
 top_dir="${base_dir}/../.."
-n_processors="$(grep '^processor' /proc/cpuinfo | wc -l)"
+if [ "${MRN_BUNDLED}" != "TRUE" ]; then
+    n_processors=1
+else
+    n_processors="$(grep '^processor' /proc/cpuinfo | wc -l)"
+fi
 
 bundled_mroonga_dir="${top_dir}/storage/mroonga"
 if [ -f "${bundled_mroonga_dir}/config.sh" ]; then
-------------- next part --------------
HTML����������������������������...
下载 



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