34 lines
1.2 KiB
Bash
34 lines
1.2 KiB
Bash
# Any commands which fail will cause the shell script to exit immediately
|
|
set -e
|
|
|
|
# Validate mandatory environment variables
|
|
if [ "$PRODUCT_BUILD_TYPE" = "" ]; then
|
|
echo "Please define 'PRODUCT_BUILD_TYPE' environment variable.";
|
|
exit 1;
|
|
fi
|
|
|
|
# Set PRODUCT_SOURCE_DIR root directory
|
|
if [ "$PRODUCT_SOURCE_DIR" = "" ]; then
|
|
RESTORE_DIRECTORY="$PWD"
|
|
cd "$(dirname "$0")"
|
|
cd ../..
|
|
export PRODUCT_SOURCE_DIR="$PWD"
|
|
echo "PRODUCT_SOURCE_DIR set to '$PRODUCT_SOURCE_DIR'."
|
|
cd "$RESTORE_DIRECTORY"
|
|
unset RESTORE_DIRECTORY
|
|
fi
|
|
|
|
echo ============================================================================
|
|
echo Running unit tests...
|
|
echo ============================================================================
|
|
cd "$PRODUCT_SOURCE_DIR/build/bin"
|
|
if [ "$PRODUCT_BUILD_TYPE" = "Debug" ]; then
|
|
./anyrtttl_unittest-d || true; #do not fail build even if a test fails.
|
|
else
|
|
./anyrtttl_unittest || true; #do not fail build even if a test fails.
|
|
fi
|
|
|
|
# Note:
|
|
# GitHub Action do not support uploading test results in a nice GUI. There is no build-in way to detect a failed test.
|
|
# Do not reset the error returned by unit test execution. This will actually fail the build and will indicate in GitHub that a test has failed.
|