-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (22 loc) · 757 Bytes
/
Makefile
File metadata and controls
28 lines (22 loc) · 757 Bytes
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
SHELL := /bin/bash
.PHONY: containment-audit
containment-audit:
PYTHONPATH=$$(pwd) python3 tools/containment_audit.py
.PHONY: policy-sync-digest-mirrors
policy-sync-digest-mirrors:
bash scripts/policy/sync_digest_policy_mirrors.sh
.PHONY: redteam-preflight
redteam-preflight:
bash scripts/redteam/00_preflight.sh
.PHONY: redteam-supplychain
redteam-supplychain:
bash scripts/redteam/05_supplychain_guard.sh
.PHONY: strict-authority-audit
strict-authority-audit:
@if [ -x scripts/make/audit-authority.sh ]; then \
bash scripts/make/audit-authority.sh STRICT=1; \
else \
echo "SKIP: strict authority audit not included in this slice"; \
fi
.PHONY: verify
verify: strict-authority-audit containment-audit redteam-preflight redteam-supplychain