-
Notifications
You must be signed in to change notification settings - Fork 498
/
Makefile
71 lines (56 loc) · 1.6 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
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
#################
### detection-rules
#################
VENV := ./env/detection-rules-build
VENV_BIN := $(VENV)/bin
PYTHON := $(VENV_BIN)/python
PIP := $(VENV_BIN)/pip
.PHONY: all
all: release
$(VENV):
python3.12 -m venv $(VENV)
.PHONY: clean
clean:
rm -rf $(VENV) *.egg-info .eggs .egg htmlcov build dist packages .build .tmp .tox __pycache__ lib/kql/build lib/kibana/build lib/kql/*.egg-info lib/kibana/*.egg-info
.PHONY: deps
deps: $(VENV)
@echo "Installing all dependencies..."
$(PIP) install .[dev]
$(PIP) install lib/kibana
$(PIP) install lib/kql
.PHONY: hunting-deps
deps: $(VENV)
@echo "Installing all dependencies..."
$(PIP) install .[hunting]
.PHONY: pytest
pytest: $(VENV) deps
$(PYTHON) -m detection_rules test
.PHONY: license-check
license-check: $(VENV) deps
@echo "LICENSE CHECK"
$(PYTHON) -m detection_rules dev license-check
.PHONY: lint
lint: $(VENV) deps
@echo "LINTING"
$(PYTHON) -m flake8 tests detection_rules --ignore D203,N815 --max-line-length 120
.PHONY: test
test: $(VENV) lint pytest
.PHONY: test-cli
test-cli: $(VENV) deps
@echo "Executing test_cli script..."
@./detection_rules/etc/test_cli.bash
.PHONY: test-remote-cli
test-remote-cli: $(VENV) deps
@echo "Executing test_remote_cli script..."
@./detection_rules/etc/test_remote_cli.bash
.PHONY: test-hunting-cli
test-remote-cli: $(VENV) hunting-deps
@echo "Executing test_hunting_cli script..."
@./detection_rules/etc/test_hunting_cli.bash
.PHONY: release
release: deps
@echo "RELEASE: $(app_name)"
$(PYTHON) -m detection_rules dev build-release --generate-navigator
rm -rf dist
mkdir dist
cp -r releases/*/*.zip dist/