Fix #1425: Reduce default BuildJobs to prevent reboot during build. (#1426)

* Fix #1425: Reduce default BuildJobs to prevent random reboots during build.

* Always use default BuildJobs value in .travis/script.sh.
This commit is contained in:
Martin Turon
2017-03-08 12:36:37 -08:00
committed by Jonathan Hui
parent 98f9eaf8da
commit a17c6876ac
6 changed files with 9 additions and 9 deletions
+4 -4
View File
@@ -134,20 +134,20 @@ set -x
export ASAN_SYMBOLIZER_PATH=`which llvm-symbolizer-3.4` || die
export ASAN_OPTIONS=symbolize=1 || die
./bootstrap || die
BuildJobs=10 make -f examples/Makefile-posix distcheck || die
make -f examples/Makefile-posix distcheck || die
}
[ $BUILD_TARGET != posix-32-bit ] || {
./bootstrap || die
COVERAGE=1 CFLAGS=-m32 CXXFLAGS=-m32 LDFLAGS=-m32 BuildJobs=10 make -f examples/Makefile-posix check || die
COVERAGE=1 CFLAGS=-m32 CXXFLAGS=-m32 LDFLAGS=-m32 make -f examples/Makefile-posix check || die
}
[ $BUILD_TARGET != posix-ncp-spi ] || {
./bootstrap || die
BuildJobs=10 make -f examples/Makefile-posix check configure_OPTIONS="--enable-ftd --enable-ncp=spi --with-examples=posix --with-platform-info=POSIX" || die
make -f examples/Makefile-posix check configure_OPTIONS="--enable-ftd --enable-ncp=spi --with-examples=posix --with-platform-info=POSIX" || die
}
[ $BUILD_TARGET != posix-ncp ] || {
./bootstrap || die
COVERAGE=1 NODE_TYPE=ncp-sim BuildJobs=10 make -f examples/Makefile-posix check || die
COVERAGE=1 NODE_TYPE=ncp-sim make -f examples/Makefile-posix check || die
}
+1 -1
View File
@@ -39,7 +39,7 @@ NM = arm-none-eabi-nm
RANLIB = arm-none-eabi-ranlib
OBJCOPY = arm-none-eabi-objcopy
BuildJobs ?= 99
BuildJobs ?= 10
configure_OPTIONS = \
--enable-ftd \
+1 -1
View File
@@ -39,7 +39,7 @@ NM = arm-none-eabi-nm
RANLIB = arm-none-eabi-ranlib
OBJCOPY = arm-none-eabi-objcopy
BuildJobs ?= 99
BuildJobs ?= 10
configure_OPTIONS = \
--enable-cli \
+1 -1
View File
@@ -39,7 +39,7 @@ NM = arm-none-eabi-nm
RANLIB = arm-none-eabi-ranlib
OBJCOPY = arm-none-eabi-objcopy
BuildJobs ?= 99
BuildJobs ?= 10
configure_OPTIONS = \
--enable-ftd \
+1 -1
View File
@@ -39,7 +39,7 @@ NM = arm-none-eabi-nm
RANLIB = arm-none-eabi-ranlib
OBJCOPY = arm-none-eabi-objcopy
BuildJobs ?= 99
BuildJobs ?= 10
configure_OPTIONS = \
--enable-ftd \
+1 -1
View File
@@ -39,7 +39,7 @@ MKDIR_P := mkdir -p
LN_S := ln -s
RM_F := rm -f
BuildJobs ?= 99
BuildJobs ?= 10
COMMONCFLAGS := \
-O1 \