wasp/waspc/run

74 lines
1.9 KiB
Plaintext
Raw Normal View History

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"
EXEC_CMD="stack exec wasp $ARGS"
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 14:52:16 +03:00
print_usage_cmd "exec <args>" \
"Builds the project once and runs the wasp executable while forwarding arguments."
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."
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"
;;
ghcid)
echo_and_eval "$GHCID_CMD"
;;
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"
;;
exec)
echo_and_eval "$BUILD_CMD"
echo
echo_and_eval "$EXEC_CMD"
;;
*)
print_usage
exit 1
esac