Skip to content

Commit

Permalink
Merge pull request #52 from timvideos/atlys-hdmi2ethernet
Browse files Browse the repository at this point in the history
Small travis refactor.

 * Build the hdmi2ethernet target for the atlys board.
 * Slight easier to read output.
  • Loading branch information
mithro committed Sep 14, 2015
2 parents a84fe13 + cb9ddb8 commit d0ea2c0
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .travis/run.sh
Expand Up @@ -6,18 +6,24 @@ set +x
set -e

BOARDS="atlys opsis"
TARGETS="base hdmi2usb"

for BOARD in $BOARDS; do
TARGETS="base hdmi2usb"
# FIXME: Get hdmi2ethernet working on the Opsis
if [ "$BOARD" = "atlys" ]; then
TARGETS="$TARGETS hdmi2ethernet"
fi

for TARGET in $TARGETS; do
echo ""
echo ""
echo ""
echo "============================================="
echo "- $BOARD $TARGET"
echo "============================================="
# Output the commands available to make it easier to debug.
echo ""
echo "- make help"
echo "- make help ($BOARD $TARGET)"
echo "---------------------------------------------"
BOARD=$BOARD TARGET=$TARGET make help

Expand All @@ -26,14 +32,14 @@ for BOARD in $BOARDS; do
echo ""
echo ""
echo ""
echo "- make firmware"
echo "- make firmware ($BOARD $TARGET)"
echo "---------------------------------------------"
BOARD=$BOARD TARGET=$TARGET make firmware

echo ""
echo ""
echo ""
echo "- make clean"
echo "- make clean ($BOARD $TARGET)"
echo "---------------------------------------------"
BOARD=$BOARD TARGET=$TARGET make clean
echo "============================================="
Expand Down

0 comments on commit d0ea2c0

Please sign in to comment.