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
1 changed files with 1 additions and 1 deletions

View File

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