mirror of
https://github.com/weaveworks/scope.git
synced 2026-03-05 03:01:11 +00:00
28 lines
686 B
Bash
Executable File
28 lines
686 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
. "$DIR/config.sh"
|
|
|
|
whitely echo Sanity checks
|
|
if ! bash "$DIR/sanity_check.sh"; then
|
|
whitely echo ...failed
|
|
exit 1
|
|
fi
|
|
whitely echo ...ok
|
|
|
|
TESTS="${@:-$(find . -name '*_test.sh')}"
|
|
RUNNER_ARGS=""
|
|
|
|
# If running on circle, use the scheduler to work out what tests to run
|
|
if [ -n "$CIRCLECI" -a -z "$NO_SCHEDULER" ]; then
|
|
RUNNER_ARGS="$RUNNER_ARGS -scheduler"
|
|
fi
|
|
|
|
# If running on circle or PARALLEL is not empty, run tests in parallel
|
|
if [ -n "$CIRCLECI" -o -n "$PARALLEL" ]; then
|
|
RUNNER_ARGS="$RUNNER_ARGS -parallel"
|
|
fi
|
|
|
|
make -C ${DIR}/../runner
|
|
HOSTS="$HOSTS" "${DIR}/../runner/runner" $RUNNER_ARGS $TESTS
|