| 12345678910111213141516171819 | #!/bin/bash# See CONTRIBUTING.md for usage.set -exTAG="docker-compose:$(git rev-parse --short HEAD)"# By default use the Dockerfile, but can be overriden to use an alternative file# e.g DOCKERFILE=Dockerfile.armhf script/test/defaultDOCKERFILE="${DOCKERFILE:-Dockerfile}"rm -rf coverage-html# Create the host directory so it's owned by $USERmkdir -p coverage-htmldocker build -f ${DOCKERFILE} -t "$TAG" .GIT_VOLUME="--volume=$(pwd)/.git:/code/.git". script/test/all
 |