forked from major/MySQLTuner-perl
-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile
More file actions
205 lines (169 loc) · 8.42 KB
/
Copy pathMakefile
File metadata and controls
205 lines (169 loc) · 8.42 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
VERSION=$(shell grep '\- Version ' mysqltuner.pl | awk '{ print $$NF}')
UPDATE_SUB_VERSION=$(shell echo $(VERSION) | awk -F. '{ print $$1"."$$2"."$$3+1 }')
UPDATE_MINOR_VERSION=$(shell echo $(VERSION) | awk -F. '{ print $$1"."$$2+1".0" }')
UPDATE_MAJOR_VERSION=$(shell echo $(VERSION) | awk -F. '{ print $$1+1".0.0" }')
all: generate_cve generate_features generate_usage tidy increment_sub_version
help:
@echo "Usage: make <target>"
@echo " help: Show this help"
@echo " generate_usage: Generate USAGE.md"
@echo " generate_release_notes: Regenerate releases/v[VERSION].md notes file"
@echo " generate_cve: Generate vulnerabilities.csv"
@echo " generate_features: Generate FEATURES.md"
@echo " tidy: Tidy mysqltuner.pl"
@echo " check-tidy: Check if mysqltuner.pl is tidy"
@echo " installdep_debian: Install dependencies on Debian"
@echo " increment_sub_version: Increment sub version"
@echo " increment_minor_version: Increment minor version"
@echo " increment_major_version: Increment major version"
@echo " push: Push to GitHub"
@echo " vendor_setup: Setup external test repositories (multi-db-docker-env, test_db)"
@echo " test: Run database lab tests (mysql84, mariadb1011, percona80)"
@echo " test-all: Run all database lab tests"
@echo " test-container: Run tests against a specific CONTAINER (e.g. CONTAINER=my_db)"
@echo " audit: Run audit on remote HOST (e.g. HOST=db-server.com)"
@echo " audit-logs: Run local audit on laboratory logs (examples/ directory)"
@echo " unit-tests: Run unit and regression tests in tests/ directory (clean output)"
@echo " unit-tests-debug: Run unit tests with verbose debug information"
@echo " clean_examples: Cleanup examples directory (KEEP=n, default 5)"
@echo " setup_commits: Install Conventional Commits tools (Node.js)"
installdep_debian: setup_commits
sudo apt install -y cpanminus libfile-util-perl libpod-markdown-perl libwww-mechanize-gzip-perl perltidy dos2unix
curl -sL https://raw.githubusercontent.com/slimtoolkit/slim/master/scripts/install-slim.sh | sudo -E bash -
setup_commits:
@echo "Installing Conventional Commits tools..."
npm install
tidy:
dos2unix ./mysqltuner.pl
perltidy -b ./mysqltuner.pl
git add ./mysqltuner.pl
git commit -m "style: tidy mysqltuner.pl" || echo "No changes to commit"
check-tidy:
perltidy -st mysqltuner.pl | diff -q - mysqltuner.pl
generate_usage:
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Starting generate_usage..." >> execution.log
pod2markdown mysqltuner.pl >USAGE.md
git add ./USAGE.md
git commit -m "docs: generate USAGE.md" || echo "No changes to commit"
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Finished generate_usage." >> execution.log
generate_cve:
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Starting generate_cve..." >> execution.log
perl ./build/updateCVElist.pl
git add ./vulnerabilities.csv
git commit -m "docs: generate vulnerabilities list" || echo "No changes to commit"
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Finished generate_cve." >> execution.log
generate_version_file:
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Starting generate_version_file..." >> execution.log
rm -f CURRENT_VERSION.txt
grep "# mysqltuner.pl - Version" ./mysqltuner.pl | awk '{ print $$NF}' > CURRENT_VERSION.txt
git add ./CURRENT_VERSION.txt
git commit -m "chore: generate CURRENT_VERSION.txt" || echo "No changes to commit"
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Finished generate_version_file." >> execution.log
generate_eof_files:
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Starting generate_eof_files..." >> execution.log
bash ./build/endoflife.sh mariadb
bash ./build/endoflife.sh mysql
git add ./*_support.md
git commit -m "docs: generate end-of-life status files" || echo "No changes to commit"
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Finished generate_eof_files." >> execution.log
generate_features:
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Starting generate_features..." >> execution.log
perl ./build/genFeatures.sh
git add ./FEATURES.md
git commit -m "docs: generate FEATURES.md" || echo "No changes to commit"
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Finished generate_features." >> execution.log
release:
@if [ -z "$(VERSION)" ]; then \
echo "ERROR: VERSION is required. Usage: make release VERSION=X.XX.XX"; \
exit 1; \
fi
@OLD_VERSION=$$(cat CURRENT_VERSION.txt | tr -d '\n'); \
echo "Bumping version from $$OLD_VERSION to $(VERSION)..."; \
echo "$(VERSION)" > CURRENT_VERSION.txt; \
sed -i "s/$$OLD_VERSION/$(VERSION)/g" mysqltuner.pl README.md POTENTIAL_ISSUES.md MEMORY_DB.md Changelog; \
pod2markdown mysqltuner.pl > USAGE.md; \
python3 build/release_gen.py; \
echo "Version bumped to $(VERSION). USAGE.md and release notes generated."
generate_release_notes:
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Starting generate_release_notes..." >> execution.log
python3 build/release_gen.py
git add ./releases/
git commit -m "docs: regenerate release notes" || echo "No changes to commit"
@echo "[$$(date '+%Y-%m-%d %H:%M:%S')] [MAKE] Finished generate_release_notes." >> execution.log
increment_sub_version:
@echo "Incrementing sub version from $(VERSION) to $(UPDATE_SUB_VERSION)"
sed -i "s/$(VERSION)/$(UPDATE_SUB_VERSION)/" mysqltuner.pl *.md .github/workflows/*.yml
git add ./*.md ./mysqltuner.pl
git commit -m "Generate $(UPDATE_SUB_VERSION) sub version at $(shell date --iso=seconds)"
git tag -a v$(UPDATE_SUB_VERSION) -m "Generate $(UPDATE_SUB_VERSION) sub version at $(shell date --iso=seconds)"
git push --tags
increment_minor_version:
@echo "Incrementing minor version from $(VERSION) to $(UPDATE_MINOR_VERSION)"
sed -i "s/$(VERSION)/$(UPDATE_MINOR_VERSION)/" mysqltuner.pl *.md .github/workflows/*.yml
git add ./*.md ./mysqltuner.pl
git commit -m "Generate $(UPDATE_MINOR_VERSION) minor version at $(shell date --iso=seconds)"
git tag -a v$(UPDATE_MINOR_VERSION) -m "Generate $(UPDATE_MINOR_VERSION) minor version at $(shell date --iso=seconds)"
git push --tags
increment_major_version:
@echo "Incrementing major version from $(VERSION) to $(UPDATE_MAJOR_VERSION)"
sed -i "s/$(VERSION)/$(UPDATE_MAJOR_VERSION)/" mysqltuner.pl *.md .github/workflows/*.yml
git add ./*.md ./mysqltuner.pl
git commit -m "Generate $(UPDATE_SUB_VERSION) major version at $(shell date --iso=seconds)"
git tag -a v$(UPDATE_MINOR_VERSION) -m "Generate $(UPDATE_MAJOR_VERSION) major version at $(shell date --iso=seconds)"
git push --tags
docker_build:
docker build . -t jmrenouard/mysqltuner:latest -t jmrenouard/mysqltuner:$(VERSION)
docker_slim:
docker run --rm -it --privileged -v /var/run/docker.sock:/var/run/docker.sock -v $(PWD):/root/app -w /root/app jmrenouard/mysqltuner:latest slim build
docker_push: docker_build
bash build/publishtodockerhub.sh $(VERSION)
vendor_setup:
@echo "Setting up vendor repositories..."
mkdir -p vendor
if [ ! -d "vendor/multi-db-docker-env" ]; then \
git clone https://github.com/jmrenouard/multi-db-docker-env vendor/multi-db-docker-env; \
else \
cd vendor/multi-db-docker-env && git pull; \
fi
if [ ! -d "vendor/test_db" ]; then \
git clone https://github.com/jmrenouard/test_db vendor/test_db; \
else \
cd vendor/test_db && git pull; \
fi
test: vendor_setup
@echo "Running MySQLTuner Lab Tests..."
bash build/test_envs.sh $(CONFIGS)
test-all: vendor_setup
@echo "Running all MySQLTuner Lab Tests..."
bash build/test_envs.sh `perl build/get_supported_envs.pl`
test-parallel: vendor_setup
@echo "Running MySQLTuner Parallel Lab Tests..."
bash build/parallel_test.sh && $(MAKE) clean_examples KEEP=10
test-container:
@echo "Running MySQLTuner against container: $(CONTAINER)..."
bash build/test_envs.sh -e "$(CONTAINER)"
lab-up: vendor_setup
@echo "Starting Persistent MySQLTuner Lab..."
bash build/test_envs.sh --keep-alive $(CONFIGS)
lab-down:
@echo "Stopping MySQLTuner Lab..."
cd vendor/multi-db-docker-env && make stop
audit:
@echo "Running MySQLTuner Audit on host: $(HOST)..."
bash build/test_envs.sh -r "$(HOST)" -a
audit-logs:
@echo "Running laboratory logs audit..."
perl build/audit_logs.pl --dir=examples --verbose
unit-tests:
@echo "Running unit and regression tests..."
perl ./build/audit_tests.pl
unit-tests-debug:
@echo "Running unit and regression tests (debug mode)..."
perl ./build/audit_tests.pl --debug
clean_examples:
@echo "Cleaning up examples..."
bash build/clean_examples.sh $(KEEP)
push:
git push
pull:
git pull