Add a script to build all examples for all platforms
This commit is contained in:
parent
3d2788d4c6
commit
50b8612c80
5
tests/compile-all/Makefile
Normal file
5
tests/compile-all/Makefile
Normal file
@ -0,0 +1,5 @@
|
||||
all:
|
||||
./build.sh all
|
||||
|
||||
clean:
|
||||
./build.sh clean
|
157
tests/compile-all/build.sh
Executable file
157
tests/compile-all/build.sh
Executable file
@ -0,0 +1,157 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Copyright (c) 2018, University of Bristol
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use in source and binary forms, with or without
|
||||
# modification, are permitted provided that the following conditions
|
||||
# are met:
|
||||
# 1. Redistributions of source code must retain the above copyright
|
||||
# notice, this list of conditions and the following disclaimer.
|
||||
# 2. Redistributions in binary form must reproduce the above copyright
|
||||
# notice, this list of conditions and the following disclaimer in the
|
||||
# documentation and/or other materials provided with the distribution.
|
||||
# 3. Neither the name of the University nor the names of its contributors
|
||||
# may be used to endorse or promote products derived from this software
|
||||
# without specific prior written permission.
|
||||
#
|
||||
# THIS SOFTWARE IS PROVIDED BY THE UNIVERSITY AND CONTRIBUTORS ``AS IS'' AND
|
||||
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
||||
# ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
||||
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
||||
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
||||
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
||||
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
||||
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||
# SUCH DAMAGE.
|
||||
#
|
||||
# Author: Atis Elsts
|
||||
|
||||
#
|
||||
# This file builds all examples for all platforms, excluding just those
|
||||
# example and platform combinations that are marked as impossible in the Makefiles
|
||||
# by using PLATFORMS_EXCLUDE and PLATFORMS_ONLY variables.
|
||||
#
|
||||
# This script can also clean all targets. To do that, run:
|
||||
# ./build.sh clean
|
||||
#
|
||||
# To invoke the building for a specific platform, run:
|
||||
# $ PLATFORMS=zoul ./build.sh
|
||||
#
|
||||
|
||||
if [[ "$PLATFORMS" == "" ]]
|
||||
then
|
||||
PLATFORMS=`ls ../../arch/platform`
|
||||
fi
|
||||
|
||||
if [[ "$MAKEFILES" == "" ]]
|
||||
then
|
||||
MAKEFILES=`find ../../examples/ -name Makefile`
|
||||
fi
|
||||
|
||||
# Set the make goal the first argument of the script or to "all" if called w/o arguments
|
||||
if [[ $# -gt 0 ]]
|
||||
then
|
||||
GOAL=$1
|
||||
else
|
||||
GOAL="all"
|
||||
fi
|
||||
|
||||
# Logging level:
|
||||
# 0 - quiet
|
||||
# 1 - normal; prints compilation and link messages only on errors
|
||||
# 2 - print all compilation and link messages
|
||||
LOG_LEVEL=1
|
||||
|
||||
if [[ $LOG_LEVEL -ge 1 ]]
|
||||
then
|
||||
LOG_INFO=echo
|
||||
CAT_INFO=cat
|
||||
else
|
||||
LOG_INFO=true
|
||||
CAT_INFO=true
|
||||
fi
|
||||
|
||||
if [[ $LOG_LEVEL -ge 2 ]]
|
||||
then
|
||||
LOG_DEBUG=echo
|
||||
CAT_DEBUG=cat
|
||||
else
|
||||
LOG_DEBUG=true
|
||||
CAT_DEBUG=true
|
||||
fi
|
||||
|
||||
NUM_SUCCESS=0
|
||||
NUM_FAILED=0
|
||||
|
||||
FAILED=
|
||||
|
||||
for platform in $PLATFORMS
|
||||
do
|
||||
# Cooja is not very friendly for command line builds at the moment
|
||||
if [[ "$platform" == "cooja" ]]
|
||||
then
|
||||
$LOG_INFO "Skipping the Cooja platform"
|
||||
continue
|
||||
fi
|
||||
|
||||
if [[ "$platform" == "srf06-cc26xx" ]]
|
||||
then
|
||||
# srf06-cc26xx has multiple boards
|
||||
BOARDS="srf06/cc26xx srf06/cc13xx launchpad/cc2650 launchpad/cc1350 sensortag/cc2650 sensortag/cc1350"
|
||||
elif [[ "$platform" == "zoul" ]]
|
||||
then
|
||||
# Zoul has multiple boards
|
||||
BOARDS="remote-reva remote-revb firefly-reva firefly orion"
|
||||
else
|
||||
# Other platforms have just a single board
|
||||
BOARDS="default"
|
||||
fi
|
||||
|
||||
$LOG_INFO "====================================================="
|
||||
$LOG_INFO "Going through all examples for platform \"$platform\""
|
||||
$LOG_INFO "====================================================="
|
||||
for example in $MAKEFILES
|
||||
do
|
||||
|
||||
for board in $BOARDS
|
||||
do
|
||||
example_dir=`dirname "$example"`
|
||||
|
||||
# Clean it before building
|
||||
make -C "$example_dir" TARGET=$platform BOARD=$board clean 2>&1 >/dev/null
|
||||
if [[ "$GOAL" == "clean" ]]
|
||||
then
|
||||
# do this just for the first board
|
||||
break
|
||||
fi
|
||||
|
||||
# Build the goal
|
||||
$LOG_INFO "make -C \"$example_dir\" -j TARGET=$platform BOARD=$board $GOAL"
|
||||
if make -C "$example_dir" -j TARGET=$platform BOARD=$board $GOAL 2>&1 >build.log
|
||||
then
|
||||
$LOG_INFO "..done"
|
||||
$CAT_DEBUG build.log
|
||||
NUM_SUCCESS=$(($NUM_SUCCESS + 1))
|
||||
else
|
||||
$LOG_INFO "Failed to build $example_dir for $platform ($board)"
|
||||
$CAT_DEBUG build.log
|
||||
NUM_FAILED=$(($NUM_FAILED + 1))
|
||||
FAILED="$FAILED; $example_dir for $platform ($board)"
|
||||
fi
|
||||
|
||||
# Clean it after building
|
||||
make -C "$example_dir" TARGET=$platform BOARD=$board clean 2>&1 >/dev/null
|
||||
done
|
||||
done
|
||||
done
|
||||
|
||||
# If building, not cleaning, print so statistics
|
||||
if [[ "$GOAL" == "all" ]]
|
||||
then
|
||||
$LOG_INFO "Number of examples skipped or built successfully: $NUM_SUCCESS"
|
||||
$LOG_INFO "Number of examples that failed to build: $NUM_FAILED"
|
||||
$LOG_INFO "Failed examples: $FAILED"
|
||||
fi
|
Loading…
Reference in New Issue
Block a user