build,travis: reduce verbosity
Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
This commit is contained in:
parent
e0f77be79a
commit
418304ab15
1 changed files with 5 additions and 5 deletions
|
@ -92,9 +92,9 @@ EOF
|
||||||
# enable BUILD_LOG
|
# enable BUILD_LOG
|
||||||
sed -i '1s/^/config BUILD_LOG\n\tbool\n\tdefault y\n\n/' Config-build.in
|
sed -i '1s/^/config BUILD_LOG\n\tbool\n\tdefault y\n\n/' Config-build.in
|
||||||
|
|
||||||
./scripts/feeds update -a
|
./scripts/feeds update -a > /dev/null
|
||||||
./scripts/feeds install -a
|
./scripts/feeds install -a > /dev/null
|
||||||
make defconfig
|
make defconfig > /dev/null
|
||||||
echo_blue "=== Setting up SDK done"
|
echo_blue "=== Setting up SDK done"
|
||||||
|
|
||||||
RET=0
|
RET=0
|
||||||
|
@ -124,8 +124,8 @@ EOF
|
||||||
|
|
||||||
echo_blue "=== $pkg_name: begin compile logs"
|
echo_blue "=== $pkg_name: begin compile logs"
|
||||||
for f in $(find logs/package/feeds/packages/$pkg_name/ -type f); do
|
for f in $(find logs/package/feeds/packages/$pkg_name/ -type f); do
|
||||||
echo_blue "Printing $f"
|
echo_blue "Printing last 200 lines of $f"
|
||||||
cat "$f"
|
tail -n200 "$f"
|
||||||
done
|
done
|
||||||
echo_blue "=== $pkg_name: end compile logs"
|
echo_blue "=== $pkg_name: end compile logs"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue