mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
CI: Work around problem with running the initial 'make clean' in parallel (#18)
Just don't pass '-j' to the 'make clean' command
This commit is contained in:
parent
f0b6256490
commit
3cd10899e6
@ -114,11 +114,11 @@ build_example () {
|
||||
# build non-verbose first
|
||||
local BUILDLOG=$(mktemp -t examplebuild.XXXX.log)
|
||||
(
|
||||
make clean defconfig &> >(tee -a "${BUILDLOG}") &&
|
||||
MAKEFLAGS= make clean defconfig &> >(tee -a "${BUILDLOG}") &&
|
||||
make all &> >(tee -a "${BUILDLOG}")
|
||||
) || {
|
||||
RESULT=$?; FAILED_EXAMPLES+=" ${EXAMPLE_NAME}"
|
||||
make V=1 clean defconfig && make V=1 # verbose output for errors
|
||||
make MAKEFLAGS= V=1 clean defconfig && make V=1 # verbose output for errors
|
||||
}
|
||||
popd
|
||||
|
||||
|
@ -49,7 +49,7 @@ function run_tests()
|
||||
make defconfig || exit $?
|
||||
|
||||
print_status "Try to clean fresh directory..."
|
||||
make clean || exit $?
|
||||
MAKEFLAGS= make clean || exit $?
|
||||
|
||||
BOOTLOADER_BINS="bootloader/bootloader.elf bootloader/bootloader.bin"
|
||||
APP_BINS="app-template.elf app-template.bin"
|
||||
|
Loading…
x
Reference in New Issue
Block a user