Skip to content
Snippets Groups Projects
Commit 34ca5d21 authored by Cenk Gündoğan's avatar Cenk Gündoğan
Browse files

jenkins: ccache optimizations

parent d853dd63
No related branches found
No related tags found
No related merge requests found
...@@ -178,7 +178,8 @@ def make_build(label, board, desc, arg) ...@@ -178,7 +178,8 @@ def make_build(label, board, desc, arg)
for app in ${apps}; do for app in ${apps}; do
if [[ \$(make -sC \$app info-boards-supported | tr ' ' '\n' | sed -n '/^${board}\$/p') ]]; then if [[ \$(make -sC \$app info-boards-supported | tr ' ' '\n' | sed -n '/^${board}\$/p') ]]; then
echo \"\n\nBuilding \$app for ${board}\" >> success_${board}_${desc}.log echo \"\n\nBuilding \$app for ${board}\" >> success_${board}_${desc}.log
make -j\${NPROC} -C \$app all >> success_${board}_${desc}.log 2>&1 || RESULT=1 rm -rf jenkins_bin; mkdir jenkins_bin
CFLAGS_DBG=\"\" BINDIR=\$(pwd)/jenkins_bin make -j\${NPROC} -C \$app all >> success_${board}_${desc}.log 2>&1 || RESULT=1
fi; fi;
done; done;
if ((\$RESULT)); then if ((\$RESULT)); then
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment