-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
41 lines (34 loc) · 1.41 KB
/
makefile
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
.PHONY = clean test long-test remote
##==============================================================================
#
all: ## Build and run the project
@cargo build
@cargo run
##==============================================================================
#
clean: ## Clean the project
@cargo clean
##==============================================================================
#
test: ## Run tests
@cargo test
##==============================================================================
#
remote-once: ## Run on remote server once (chuggy)
@ssh chuggy "cd ~/sa-pap; git pull; pwd; screen -L -S sa-pap -md "/usr/bin/cargo run --release""
##==============================================================================
#
remote: ## Run on remote server 1000 times (chuggy)
@ssh chuggy "cd ~/sa-pap; git pull; pwd; screen -L -S sa-pap -md "/usr/bin/cargo run --release 900""
##==============================================================================
#
long-test: ## Repeat tests 100 times
for i in {0..100}; do \
make test; \
done
##==============================================================================
# https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
help: ## Auto-generated help menu
@grep -P '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
sort | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'