mirror of
https://github.com/espressif/openthread.git
synced 2026-08-05 10:27:49 +00:00
* 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:
committed by
Jonathan Hui
parent
98f9eaf8da
commit
a17c6876ac
+4
-4
@@ -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
|
||||
}
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -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 \
|
||||
|
||||
@@ -39,7 +39,7 @@ MKDIR_P := mkdir -p
|
||||
LN_S := ln -s
|
||||
RM_F := rm -f
|
||||
|
||||
BuildJobs ?= 99
|
||||
BuildJobs ?= 10
|
||||
|
||||
COMMONCFLAGS := \
|
||||
-O1 \
|
||||
|
||||
Reference in New Issue
Block a user