ci: use command 'all' instead of 'build' for waf

The command build uses 'bin' programs group by default. By using the command
'all', we tell the build system to build all programs.
This commit is contained in:
Gustavo Jose de Sousa 2016-01-27 17:42:39 +00:00 committed by Lucas De Marchi
parent 4c6dbe725d
commit 7b0a6d301d

View File

@ -68,7 +68,7 @@ for t in $CI_BUILD_TARGET; do
echo "Starting waf build for board ${t}..." echo "Starting waf build for board ${t}..."
$waf configure --board $t $waf configure --board $t
$waf clean $waf clean
$waf ${build_concurrency[$t]} build $waf ${build_concurrency[$t]} all
if [[ $t == linux ]]; then if [[ $t == linux ]]; then
$waf check $waf check
fi fi