2019-05-05 14:08:16 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# This script defines common commands used during building / developing
|
|
|
|
# and makes it easy to run them.
|
|
|
|
|
|
|
|
THIS=$0
|
|
|
|
COMMAND=${1:-watch}
|
|
|
|
shift
|
|
|
|
ARGS="$@"
|
|
|
|
|
2020-09-22 14:52:16 +03:00
|
|
|
BOLD="\033[1m"
|
|
|
|
UNDERLINED="\033[4m"
|
|
|
|
RESET="\033[0m"
|
|
|
|
LIGHT_CYAN="\033[96m"
|
|
|
|
DEFAULT_COLOR="\033[39m"
|
2019-05-05 14:08:16 +03:00
|
|
|
|
2019-05-05 22:46:06 +03:00
|
|
|
BUILD_CMD="stack build"
|
2019-05-05 14:08:16 +03:00
|
|
|
TEST_CMD="$BUILD_CMD --test"
|
2020-09-07 22:55:13 +03:00
|
|
|
EXEC_CMD="stack exec wasp $ARGS"
|
2019-12-17 23:40:05 +03:00
|
|
|
GHCID_CMD="ghcid --command=stack ghci"
|
2019-05-05 14:08:16 +03:00
|
|
|
|
|
|
|
echo_and_eval () {
|
|
|
|
echo -e $"${LIGHT_CYAN}Running:${DEFAULT_COLOR}" $1 "\n"
|
|
|
|
$1
|
|
|
|
}
|
|
|
|
|
|
|
|
echo_bold () { echo -e $"${BOLD}${1}${RESET}"; }
|
|
|
|
|
|
|
|
print_usage () {
|
|
|
|
print_usage_cmd () {
|
|
|
|
echo -e $" ${UNDERLINED}${1}${RESET}"
|
|
|
|
echo " $2";
|
|
|
|
}
|
|
|
|
|
|
|
|
echo_bold "Usage: ${THIS} <command>"
|
|
|
|
echo "Commands:"
|
|
|
|
print_usage_cmd "build" \
|
|
|
|
"Builds the project."
|
|
|
|
print_usage_cmd "test" \
|
|
|
|
"Builds the project and executes tests."
|
2020-09-22 15:55:16 +03:00
|
|
|
print_usage_cmd "wasp <args>" \
|
2020-09-22 14:52:16 +03:00
|
|
|
"Builds the project once and runs the wasp executable while forwarding arguments."
|
2019-12-17 23:40:05 +03:00
|
|
|
print_usage_cmd "ghcid" \
|
2020-09-22 14:52:16 +03:00
|
|
|
"Runs ghcid, which watches source file changes and reports errors. Does not watch tests."
|
2020-01-28 21:41:14 +03:00
|
|
|
print_usage_cmd "ghcid-test" \
|
2020-09-22 14:52:16 +03:00
|
|
|
"Runs ghcid on both source and tests."
|
2019-05-05 14:08:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
case $COMMAND in
|
|
|
|
build)
|
|
|
|
echo_and_eval "$BUILD_CMD"
|
|
|
|
;;
|
2019-12-17 23:40:05 +03:00
|
|
|
ghcid)
|
|
|
|
echo_and_eval "$GHCID_CMD"
|
|
|
|
;;
|
2020-01-28 21:41:14 +03:00
|
|
|
ghcid-test)
|
|
|
|
# --color always is needed for Tasty to turn on the coloring.
|
|
|
|
# NOTE: I did not put this into variable because I was not able to put single quotes
|
|
|
|
# around :main --color always that way and it was not working.
|
|
|
|
ghcid -T=':main --color always' --command=stack ghci test/TastyDiscoverDriver.hs
|
|
|
|
;;
|
2019-05-05 14:08:16 +03:00
|
|
|
test)
|
|
|
|
echo_and_eval "$TEST_CMD"
|
|
|
|
;;
|
2020-09-22 15:55:16 +03:00
|
|
|
wasp)
|
2019-05-05 14:08:16 +03:00
|
|
|
echo_and_eval "$BUILD_CMD"
|
|
|
|
echo
|
|
|
|
echo_and_eval "$EXEC_CMD"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
print_usage
|
|
|
|
exit 1
|
|
|
|
esac
|