-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile
More file actions
executable file
·122 lines (99 loc) · 3.43 KB
/
Taskfile
File metadata and controls
executable file
·122 lines (99 loc) · 3.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/bin/bash
# =========================================================
# Taskfile gives you a set of quick tasks for your project
# More info: https://github.com/Enrise/Taskfile
# =========================================================
function banner {
echo -e "${BLUE}\n"\
"▗▄▄▄▖▗▖ ▗▖▗▖ ▗▖▗▖ ▗▖▗▄▄▄▖ ▗▄▖ ▗▄▄▖ ▗▖ ▗▄▄▄▖\n"\
" █ ▐▛▚▞▜▌▐▛▚▞▜▌▐▌ ▐▌ █ ▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌ \n"\
" █ ▐▌ ▐▌▐▌ ▐▌▐▌ ▐▌ █ ▐▛▀▜▌▐▛▀▚▖▐▌ ▐▛▀▀▘\n"\
"▗▄█▄▖▐▌ ▐▌▐▌ ▐▌▝▚▄▞▘ █ ▐▌ ▐▌▐▙▄▞▘▐▙▄▄▖▐▙▄▄▖${RESET}"
}
# =========================================================
## Project
# =========================================================
function task:init { ## Initialise the project for local development
project:git-config
project:update
task:help
}
function task:update { ## Update all dependencies and files
project:update
}
function project:update {
title "Run project updates"
task:templating
composer install
}
function project:git-config {
title "Setting git configuration"
git config --local core.hooksPath dev/git-hooks
echo -e "Git hooks directory is set to ${YELLOW}./dev/git-hooks${RESET}."
}
function task:templating {
templating:composer.json
templating:.tool-versions
}
function templating:composer.json {
php ./dev/templating/composer/builder.php
}
function templating:.tool-versions {
php ./dev/templating/tool-versions/builder.php
}
# =========================================================
## Tests
# =========================================================
function task:test {
task:lint
task:unit
task:stan
}
function task:lint {
./vendor/bin/ecs --config=dev/ecs/ecs.php
}
function task:fix {
./vendor/bin/ecs --config=dev/ecs/ecs.php --fix
}
function task:unit { ## Run unit test suite
./vendor/bin/phpunit -d memory_limit=1G tests
}
function task:stan { ## Run unit test suite
./vendor/bin/phpstan analyse --configuration dev/phpstan/phpstan.neon
}
# =========================================================
## Taskfile
# =========================================================
set -eo pipefail
BLUE=$(printf '\033[36m')
YELLOW=$(printf '\033[33m')
RED=$(printf '\033[31m')
GREEN=$(printf '\033[32m')
RESET=$(printf '\033[0m')
# Define global variables here
function title {
echo -e "\n${BLUE}=>${RESET} $1\n"
}
function task:help { ## Show all available tasks
title "Available tasks"
awk 'BEGIN {FS = " { [#][#][ ]?"} /^([a-zA-Z_-]*:?.*)(\{ )?[#][#][ ]?/ \
{printf "\033[33m%-34s\033[0m %s\n", $1, $2}' $0 |\
sed -E "s/[#]{2,}[ ]*/${RESET}/g" |\
sed -E "s/function task:*/ /g"
echo -e "\n${BLUE}Usage:${RESET} $0 ${YELLOW}<task>${RESET} <args>"
}
function task:shorthand { ## Create CLI shorthand task instead of ./Taskfile
title "Creating task shorthand"
echo -e "You're about to create ${YELLOW}/usr/local/bin/task${RESET} that requires ${RED}root${RESET} permission..."
sudo curl --location --silent --output /usr/local/bin/task https://enri.se/taskfile-bin
sudo chmod +x /usr/local/bin/task
echo -e "${BLUE}You can now use:${RESET} task ${YELLOW}<task>${RESET} <args>"
}
banner
if [[ ! "$(declare -F task:${@-help})" ]]; then
title "Task not found"
echo -e "Task ${YELLOW}$1${RESET} doesn't exist."
task:help
exit 1
fi
task:${@-help}