meetup-raffle-winner-picker/run

43 lines
858 B
Plaintext
Raw Normal View History

2022-01-13 22:03:05 +00:00
#!/bin/bash
# Based on https://github.com/adriancooney/Taskfile and
# https://nickjanetakis.com/blog/replacing-make-with-a-shell-script-for-running-your-projects-tasks.
DOCKER_TAG=meetup-raffle-winner-picker
function build {
# Build the Docker image.
docker image build . --tag ${DOCKER_TAG}
}
2022-01-13 22:09:58 +00:00
function ci:test {
build
test "${@}"
}
2022-01-14 00:31:54 +00:00
function composer {
# Run Composer commands.
docker container run --rm -it \
-v $(pwd):/app \
--entrypoint composer \
${DOCKER_TAG} "${@}"
}
2022-01-13 22:03:05 +00:00
function help {
printf "%s <task> [args]\n\nTasks:\n" "${0}"
compgen -A function | grep -v "^_" | cat -n
printf "\nExtended help:\n Each task has comments for general usage\n"
}
function test {
# Run PHPUnit tests.
2022-01-13 22:09:58 +00:00
docker container run --rm -t \
2022-01-13 22:03:05 +00:00
-v $(pwd):/app \
--entrypoint phpunit \
${DOCKER_TAG} "${@}"
}
eval "${@:-help}"